This article contains case-studies illustrating the benefits of implementing workflows with CoRC. Example code to get started can be found in the tutorial articles on model entitiy management, task management and model building.

Initial Setup

library(tidyverse)
library(parallel)
library(CoRC)

# helper to run tasks in parallel on all cores
mapInParallel <- function(data, fun, ..., .prep = {}) {
  cl <- makeCluster(detectCores())
  clusterCall(cl = cl, fun = eval, .prep, env = .GlobalEnv)
  result <- parLapplyLB(cl = cl, X = data, fun = as_mapper(fun), ..., chunk.size = 50)
  stopCluster(cl)
  result
}

3D Trajectory Plot of a Calcium Model

This example loads the Kummer2000 - Oscillations in Calcium Signalling model. The model has 3 species which oscillate. These oscialltions can be visualized as a trajectory through a 3D space. The example does this once in a deterministic and once in a stochatic fashion.

loadSBML("http://www.ebi.ac.uk/biomodels-main/download?mid=BIOMD0000000329")
#> # A COPASI model reference:
#> Model name: "Kummer2000 - Oscillations in Calcium Signalling"
#> Number of compartments: 1
#> Number of species: 3
#> Number of reactions: 8

# Run 24 sec (2 Periods)
setTimeCourseSettings(24, intervals = 10000)

timeseries <- list(
  deterministic = runTimeCourse()$result,
  stochastic = runTimeCourse(method = list(method = "directMethod", use_random_seed = T, random_seed = 1))$result
)

# Create the same plot for both timeseries
plots <- map(
  timeseries,
  plotly::plot_ly,
  type = "scatter3d",
  mode = "lines",
  x = ~ `G-alpha`,
  y = ~ activePLC,
  z = ~ Calcium,
  color = ~ Time
)

unloadModel()

plots$deterministic
plots$stochastic

Statistics of Repeated Stochastic Simulations

This implements an example from the Condor-COPASI paper. The example illustrates advantages of parallel processing.

# Run 1000 stochastic time series possibly in parallel
loadModel("https://raw.githubusercontent.com/copasi/condor-copasi/master/examples/stochastic_test.cps")
#> # A COPASI model reference:
#> Model name: "Kummer calcium model"
#> Number of compartments: 1
#> Number of species: 3
#> Number of reactions: 8

# timeseries <- 1:1000 %>% map(~ runTimeCourse()$result)
timeseries <-
  # Defines parallel evaluation:
  mapInParallel(
    # perpare worker (.prep),
    .prep = quote({
      library(CoRC)
      loadModel("https://raw.githubusercontent.com/copasi/condor-copasi/master/examples/stochastic_test.cps")
      setTimeCourseSettings(method = list(method = "directMethod", use_random_seed = T))
    }),
    # iteration data (1000 random seeds) is given as .x to iteration formula,
    1:1000,
    # iteration code (formula ~ {.x})
    ~ runTimeCourse(method = list(random_seed = .x))$result
  )

# Combine all results and reshape the data
plotdata <-
  timeseries %>%
  bind_rows() %>%
  group_by(Time) %>%
  # calculate mean and sd for all time points
  summarise_all(list(mean = mean, sd = sd)) %>%
  # gather all values so the column "name" identifies "a_mean", "b_sd" etc.
  pivot_longer(-Time) %>%
  # split up information on species (a,b,c) and type of value (mean, sd)
  separate(name, c("species", "type"), "_") %>%
  pivot_wider(names_from = type, values_from = value)

print(plotdata, n = 6)
#> # A tibble: 2,403 x 4
#>    Time species  mean    sd
#>   <dbl> <chr>   <dbl> <dbl>
#> 1  0    a        8.00 0    
#> 2  0    b        8.00 0    
#> 3  0    c        8.00 0    
#> 4  0.05 a        7.06 0.249
#> 5  0.05 b        8.12 0.117
#> 6  0.05 c        5.60 0.442
#> # … with 2,397 more rows

plot <-
  ggplot(data = plotdata, aes(x = Time, y = mean, group = species, tt_sd = sd)) +
  geom_ribbon(aes(ymin = mean - sd, ymax = mean + sd, fill = species), alpha = 1 / 4) +
  geom_line(aes(color = species)) +
  guides(fill = "none") +
  labs(
    x = paste0("Time (", getTimeUnit(), ")"),
    y = paste0("Concentration (", getQuantityUnit(), ")"),
    color = "Species"
  )

unloadModel()

plotly::ggplotly(plot, tooltip = c("group", "x", "y", "tt_sd"))

Parameter Scan

2D Scan Over the Cartesian Product of Two Species Concentration Vectors

This implements an example from the Mendes2009 paper on COPASI use cases.

loadSBML("https://www.ebi.ac.uk/biomodels-main/download?mid=BIOMD0000000068")
#> # A COPASI model reference:
#> Model name: "Curien2003_MetThr_synthesis"
#> Number of compartments: 1
#> Number of species: 9
#> Number of reactions: 3

setSteadyStateSettings(calculate_jacobian = FALSE, perform_stability_analysis = FALSE)

# Cartesian product of the input values
scan <- cross_df(
  list(
    cysteine = 0.3 * 10 ^ seq(0, 3, length.out = 6),
    adomed = seq(0, 100, length.out = 51)
  )
)

scan <-
  scan %>%
  mutate(
    # Calculate steady state fluxes for every row
    ss_fluxes = pmap(., function(cysteine, adomed) {
      setSpecies("Cysteine", initial_concentration = cysteine)
      setSpecies("adenosyl", initial_concentration = adomed)
      ss <- runSteadyState()
      stopifnot(ss$result == "found")
      ss$reactions$flux
    }),
    # The second flux is CGS
    CGS = map_dbl(ss_fluxes, 2),
    # The third flux is TS
    TS = map_dbl(ss_fluxes, 3)
  )

plot <-
  ggplot(data = scan, aes(x = adomed, group = cysteine)) +
  geom_point(aes(y = CGS, color = "CGS")) +
  geom_point(aes(y = TS, color = "TS")) +
  geom_line(aes(y = CGS, color = "CGS")) +
  geom_line(aes(y = TS, color = "TS")) +
  labs(
    x = paste0("Adomed (", getQuantityUnit(), ")"),
    y = paste0("Flux (", getQuantityUnit(), " / ", getTimeUnit(), ")"),
    color = "Species"
  )

unloadModel()

plotly::ggplotly(plot)

2D Scan over Random Concentrations of Two Species

This implements an example from the Mendes2009 paper on COPASI use cases. It is in many ways similar to the previous example but is written to run parallelized.

loadSBML("https://www.ebi.ac.uk/biomodels-main/download?mid=BIOMD0000000068")
#> # A COPASI model reference:
#> Model name: "Curien2003_MetThr_synthesis"
#> Number of compartments: 1
#> Number of species: 9
#> Number of reactions: 3

# 10000 repeats of steady state task with random cysteine and adomed
scan <-
  # Defines parallel evaluation:
  mapInParallel(
    # perpare worker (.prep),
    .prep = quote({
      library(CoRC)
      loadSBML("https://www.ebi.ac.uk/biomodels-main/download?mid=BIOMD0000000068")
      setSteadyStateSettings(calculate_jacobian = FALSE, perform_stability_analysis = FALSE)
    }),
    # iteration data (10000 random seeds) is given as .x to iteration formula,
    1:10000,
    # iteration code (formula ~ {.x})
    ~ {
      set.seed(.x)
      cysteine <- 0.3 * 10 ^ runif(1L, min = 0, max = 3)
      adomed <- runif(1L, min = 0, max = 100)
      setSpecies(
        key = c("Cysteine", "adenosyl"),
        initial_concentration = c(cysteine, adomed)
      )
      ss <- runSteadyState()
      stopifnot(ss$result == "found")
      list(
        cysteine = cysteine,
        adomed = adomed,
        CGS = ss$reactions$flux[2],
        TS = ss$reactions$flux[3]
      )
    }
  )

# Combine all results and reshape the data
plotdata <-
  scan %>%
  bind_rows() %>%
  pivot_longer(c(CGS, TS), names_to = "reaction", values_to = "flux")

plot <-
  ggplot(data = plotdata, aes(x = adomed, y = flux, group = reaction, tt_cys = cysteine)) +
  geom_point(aes(color = reaction), alpha = 1 / 10, size = 3 / 4) +
  labs(
    x = paste0("Adomed (", getQuantityUnit(), ")"),
    y = paste0("Flux (", getQuantityUnit(), " / ", getTimeUnit(), ")"),
    color = "Species"
  )

unloadModel()

plotly::ggplotly(plot, tooltip = c("tt_cys", "x", "y"))

Parameter Estimation

This implements an example from the Mendes2009 paper on COPASI use cases.

loadSBML("http://www.ebi.ac.uk/biomodels-main/download?mid=BIOMD0000000010")
#> # A COPASI model reference:
#> Model name: "Kholodenko2000 - Ultrasensitivity and negative feedback bring oscillations in MAPK cascade"
#> Number of compartments: 1
#> Number of species: 8
#> Number of reactions: 10

# get timeseries for the record
data_before <- runTimeCourse(1000, 1)$result

# read experimental data
data_experimental <-
  read_tsv("data/MAPKdata.txt") %>%
  rename(Time = time, `Mos-P` = "MAPKKK-P", `Erk2-P` = "MAPK-P")

# define the experiments for COPASI
fit_experiments <- defineExperiments(
  data = data_experimental,
  type = c("time", "dependent", "dependent"),
  mapping = c(NA, "{[Mos-P]}", "{[Erk2-P]}"),
  weight_method = "mean_square"
)

# define the parameters for COPASI
fit_parameters <-
  map(
    parameter_strict(regex(c("V1$", "V2$", "V5$", "V6$", "V9$", "V10$"))),
    ~ {
      val <- getParameters(.x)$value
      defineParameterEstimationParameter(parameter(.x, "Value"), start_value = val, lower_bound = val * 0.1, upper_bound = val * 1.9)
    }
  )

result <-
  runParameterEstimation(
    parameters = fit_parameters,
    experiments = fit_experiments,
    method = list(
      method = "LevenbergMarquardt",
      log_verbosity = 2
    ),
    update_model = TRUE
  )

# get timeseries for the record
data_after <- runTimeCourse(1000, 1)$result

plots <- list(
  `Erk2-P` =
    ggplot(mapping = aes(x = Time, y = `Erk2-P`)) +
    geom_point(data = data_experimental, aes(color = "experimental")) +
    geom_line(data = data_before, aes(color = "before")) +
    geom_line(data = data_after, aes(color = "after")) +
    scale_color_manual(values = c(before = "red", after = "green", experimental = "black")) +
    labs(
      x = paste0("Time (", getTimeUnit(), ")"),
      y = paste0("Erk2-P (", getQuantityUnit(), ")"),
      color = "Series"
    ),
  `Mos-P` =
    ggplot(mapping = aes(x = Time, y = `Mos-P`)) +
    geom_point(data = data_experimental, aes(color = "experimental")) +
    geom_line(data = data_before, aes(color = "before")) +
    geom_line(data = data_after, aes(color = "after")) +
    scale_color_manual(values = c(before = "red", after = "green", experimental = "black")) +
    labs(
      x = paste0("Time (", getTimeUnit(), ")"),
      y = paste0("Mos-P (", getQuantityUnit(), ")"),
      color = "Series"
    )
)

unloadModel()

result$fitted_values
#> # A tibble: 2 x 5
#>   fitted_value objective_value root_mean_square error_mean error_mean_std_devia…
#>   <chr>                  <dbl>            <dbl>      <dbl>                 <dbl>
#> 1 [Mos-P]                 25.4             1.68     -0.282                  1.66
#> 2 [Erk2-P]                10.1             1.06      0.330                  1.01
result$parameters
#> # A tibble: 6 x 8
#>   parameter lower_bound start_value value upper_bound std_deviation
#>   <chr>           <dbl>       <dbl> <dbl>       <dbl>         <dbl>
#> 1 (MAPKKK …       0.25        2.46  2.46        4.75        0.139  
#> 2 (MAPKKK …       0.025       0.247 0.247       0.475       0.00828
#> 3 (dephosp…       0.075       0.882 0.882       1.42        0.261  
#> 4 (dephosp…       0.075       1.42  1.42        1.42        0.709  
#> 5 (dephosp…       0.05        0.728 0.728       0.95        0.0805 
#> 6 (dephosp…       0.05        0.707 0.707       0.95        0.0962 
#> # … with 2 more variables: coeff_of_variation <dbl>, gradient <dbl>
result$protocol
#> [1] "2020-05-22T12:16:29: Levenberg-Marquardt algorithm started\nFor more information about this method see: http://copasi.org/Support/User_Manual/Methods/Optimization_Methods/Levenberg_-_Marquardt/\n\n2020-05-22T12:16:29: niter=0, f=71.7571, fbest=209.016\nposition: x[0]=2.5206 x[1]=0.248088 x[2]=0.943894 x[3]=1.13126 x[4]=0.503919 x[5]=0.523434 \n\n2020-05-22T12:16:29: niter=1, f=49.4907, fbest=71.7571\nposition: x[0]=2.57363 x[1]=0.249006 x[2]=1.01968 x[3]=1.3638 x[4]=0.53648 x[5]=0.516279 \n\n2020-05-22T12:16:29: niter=2, f=44.6048, fbest=49.4907\nposition: x[0]=2.59707 x[1]=0.24724 x[2]=0.988406 x[3]=1.425 x[4]=0.560393 x[5]=0.5329 \n\n2020-05-22T12:16:29: niter=3, f=43.146, fbest=44.6048\nposition: x[0]=2.58779 x[1]=0.250311 x[2]=0.949729 x[3]=1.425 x[4]=0.597975 x[5]=0.562341 \n\n2020-05-22T12:16:29: niter=4, f=46.431, fbest=43.146\nposition: x[0]=2.55408 x[1]=0.248475 x[2]=0.858936 x[3]=1.425 x[4]=0.640194 x[5]=0.60643 \n\n2020-05-22T12:16:29: Iteration 3: Restarting iteration with increased lambda.\nLambda = 0.25\n\n2020-05-22T12:16:29: niter=4, f=41.5461, fbest=43.146\nposition: x[0]=2.56958 x[1]=0.248135 x[2]=0.930338 x[3]=1.425 x[4]=0.609535 x[5]=0.579627 \n\n2020-05-22T12:16:29: niter=5, f=42.8433, fbest=41.5461\nposition: x[0]=2.55253 x[1]=0.24828 x[2]=0.890955 x[3]=1.425 x[4]=0.634138 x[5]=0.600298 \n\n2020-05-22T12:16:29: Iteration 4: Restarting iteration with increased lambda.\nLambda = 0.5\n\n2020-05-22T12:16:29: niter=5, f=40.5271, fbest=41.5461\nposition: x[0]=2.55866 x[1]=0.247978 x[2]=0.932542 x[3]=1.425 x[4]=0.61656 x[5]=0.586905 \n\n2020-05-22T12:16:29: niter=6, f=40.3199, fbest=40.5271\nposition: x[0]=2.54865 x[1]=0.247778 x[2]=0.91749 x[3]=1.425 x[4]=0.629651 x[5]=0.598377 \n\n2020-05-22T12:16:29: niter=7, f=42.0733, fbest=40.3199\nposition: x[0]=2.53851 x[1]=0.248208 x[2]=0.88043 x[3]=1.425 x[4]=0.650333 x[5]=0.616084 \n\n2020-05-22T12:16:29: Iteration 6: Restarting iteration with increased lambda.\nLambda = 0.5\n\n2020-05-22T12:16:29: niter=7, f=39.3468, fbest=40.3199\nposition: x[0]=2.53993 x[1]=0.247759 x[2]=0.920831 x[3]=1.425 x[4]=0.635344 x[5]=0.605105 \n\n2020-05-22T12:16:29: niter=8, f=39.3504, fbest=39.3468\nposition: x[0]=2.53352 x[1]=0.247656 x[2]=0.907048 x[3]=1.425 x[4]=0.646386 x[5]=0.615107 \n\n2020-05-22T12:16:29: Iteration 7: Restarting iteration with increased lambda.\nLambda = 1\n\n2020-05-22T12:16:29: niter=8, f=38.7462, fbest=39.3468\nposition: x[0]=2.53446 x[1]=0.247628 x[2]=0.92498 x[3]=1.425 x[4]=0.637729 x[5]=0.609201 \n\n2020-05-22T12:16:29: niter=9, f=38.5087, fbest=38.7462\nposition: x[0]=2.531 x[1]=0.247412 x[2]=0.921047 x[3]=1.425 x[4]=0.643641 x[5]=0.614623 \n\n2020-05-22T12:16:29: niter=10, f=38.7464, fbest=38.5087\nposition: x[0]=2.52647 x[1]=0.247455 x[2]=0.904667 x[3]=1.425 x[4]=0.654107 x[5]=0.623369 \n\n2020-05-22T12:16:29: Iteration 9: Restarting iteration with increased lambda.\nLambda = 1\n\n2020-05-22T12:16:29: niter=10, f=38.1588, fbest=38.5087\nposition: x[0]=2.52686 x[1]=0.247351 x[2]=0.923048 x[3]=1.425 x[4]=0.64609 x[5]=0.618028 \n\n2020-05-22T12:16:29: niter=11, f=38.0264, fbest=38.1588\nposition: x[0]=2.52411 x[1]=0.247242 x[2]=0.917853 x[3]=1.425 x[4]=0.651598 x[5]=0.622833 \n\n2020-05-22T12:16:29: niter=12, f=38.3632, fbest=38.0264\nposition: x[0]=2.52059 x[1]=0.247372 x[2]=0.900921 x[3]=1.425 x[4]=0.661223 x[5]=0.630721 \n\n2020-05-22T12:16:29: Iteration 11: Restarting iteration with increased lambda.\nLambda = 1\n\n2020-05-22T12:16:29: niter=12, f=37.7401, fbest=38.0264\nposition: x[0]=2.52035 x[1]=0.247222 x[2]=0.919307 x[3]=1.425 x[4]=0.653836 x[5]=0.625952 \n\n2020-05-22T12:16:29: niter=13, f=37.6676, fbest=37.7401\nposition: x[0]=2.51809 x[1]=0.247165 x[2]=0.913721 x[3]=1.425 x[4]=0.658902 x[5]=0.630287 \n\n2020-05-22T12:16:29: niter=14, f=38.1071, fbest=37.6676\nposition: x[0]=2.51558 x[1]=0.247344 x[2]=0.896642 x[3]=1.425 x[4]=0.667743 x[5]=0.637345 \n\n2020-05-22T12:16:29: Iteration 13: Restarting iteration with increased lambda.\nLambda = 1\n\n2020-05-22T12:16:29: niter=14, f=37.4121, fbest=37.6676\nposition: x[0]=2.51462 x[1]=0.247163 x[2]=0.915046 x[3]=1.425 x[4]=0.660916 x[5]=0.63319 \n\n2020-05-22T12:16:29: niter=15, f=37.3741, fbest=37.4121\nposition: x[0]=2.51282 x[1]=0.247126 x[2]=0.909591 x[3]=1.425 x[4]=0.665557 x[5]=0.637175 \n\n2020-05-22T12:16:29: niter=16, f=37.85, fbest=37.3741\nposition: x[0]=2.51087 x[1]=0.247312 x[2]=0.892955 x[3]=1.425 x[4]=0.673591 x[5]=0.643548 \n\n2020-05-22T12:16:29: Iteration 15: Restarting iteration with increased lambda.\nLambda = 1\n\n2020-05-22T12:16:29: niter=16, f=37.1369, fbest=37.3741\nposition: x[0]=2.50951 x[1]=0.247126 x[2]=0.91095 x[3]=1.425 x[4]=0.667335 x[5]=0.639902 \n\n2020-05-22T12:16:29: niter=17, f=37.1358, fbest=37.1369\nposition: x[0]=2.5086 x[1]=0.247112 x[2]=0.905659 x[3]=1.425 x[4]=0.671786 x[5]=0.643626 \n\n2020-05-22T12:16:29: niter=18, f=37.6681, fbest=37.1358\nposition: x[0]=2.50725 x[1]=0.247317 x[2]=0.889271 x[3]=1.425 x[4]=0.67919 x[5]=0.649378 \n\n2020-05-22T12:16:29: Iteration 17: Restarting iteration with increased lambda.\nLambda = 1\n\n2020-05-22T12:16:29: niter=18, f=36.9078, fbest=37.1358\nposition: x[0]=2.50541 x[1]=0.247116 x[2]=0.907126 x[3]=1.425 x[4]=0.673366 x[5]=0.646215 \n\n2020-05-22T12:16:29: niter=19, f=36.9317, fbest=36.9078\nposition: x[0]=2.50429 x[1]=0.247095 x[2]=0.901889 x[3]=1.425 x[4]=0.677295 x[5]=0.649476 \n\n2020-05-22T12:16:29: Iteration 18: Restarting iteration with increased lambda.\nLambda = 2\n\n2020-05-22T12:16:29: niter=19, f=36.7693, fbest=36.9078\nposition: x[0]=2.50327 x[1]=0.247091 x[2]=0.908907 x[3]=1.425 x[4]=0.673992 x[5]=0.647784 \n\n2020-05-22T12:16:29: niter=20, f=36.7128, fbest=36.7693\nposition: x[0]=2.50248 x[1]=0.247019 x[2]=0.907924 x[3]=1.425 x[4]=0.676024 x[5]=0.649634 \n\n2020-05-22T12:16:29: niter=21, f=36.7863, fbest=36.7128\nposition: x[0]=2.50211 x[1]=0.247015 x[2]=0.901446 x[3]=1.425 x[4]=0.679961 x[5]=0.652477 \n\n2020-05-22T12:16:29: Iteration 20: Restarting iteration with increased lambda.\nLambda = 2\n\n2020-05-22T12:16:29: niter=21, f=36.6307, fbest=36.7128\nposition: x[0]=2.50098 x[1]=0.246995 x[2]=0.908883 x[3]=1.425 x[4]=0.67677 x[5]=0.650933 \n\n2020-05-22T12:16:29: niter=22, f=36.5972, fbest=36.6307\nposition: x[0]=2.50045 x[1]=0.246944 x[2]=0.90727 x[3]=1.425 x[4]=0.678778 x[5]=0.652578 \n\n2020-05-22T12:16:29: niter=23, f=36.6852, fbest=36.5972\nposition: x[0]=2.50016 x[1]=0.246967 x[2]=0.900348 x[3]=1.425 x[4]=0.682537 x[5]=0.655208 \n\n2020-05-22T12:16:29: Iteration 22: Restarting iteration with increased lambda.\nLambda = 2\n\n2020-05-22T12:16:29: niter=23, f=36.5286, fbest=36.5972\nposition: x[0]=2.49903 x[1]=0.246932 x[2]=0.907956 x[3]=1.425 x[4]=0.679497 x[5]=0.653786 \n\n2020-05-22T12:16:29: niter=24, f=36.5213, fbest=36.5286\nposition: x[0]=2.49891 x[1]=0.24694 x[2]=0.905719 x[3]=1.425 x[4]=0.681506 x[5]=0.655187 \n\n2020-05-22T12:16:29: niter=25, f=36.6133, fbest=36.5213\nposition: x[0]=2.49854 x[1]=0.246964 x[2]=0.898811 x[3]=1.425 x[4]=0.685025 x[5]=0.65776 \n\n2020-05-22T12:16:29: Iteration 24: Restarting iteration with increased lambda.\nLambda = 2\n\n2020-05-22T12:16:29: niter=25, f=36.4491, fbest=36.5213\nposition: x[0]=2.49738 x[1]=0.246927 x[2]=0.906431 x[3]=1.425 x[4]=0.682124 x[5]=0.656417 \n\n2020-05-22T12:16:29: niter=26, f=36.4279, fbest=36.4491\nposition: x[0]=2.49687 x[1]=0.246893 x[2]=0.904563 x[3]=1.425 x[4]=0.68392 x[5]=0.65792 \n\n2020-05-22T12:16:29: niter=27, f=36.5351, fbest=36.4279\nposition: x[0]=2.49678 x[1]=0.246939 x[2]=0.89749 x[3]=1.425 x[4]=0.687361 x[5]=0.660267 \n\n2020-05-22T12:16:29: Iteration 26: Restarting iteration with increased lambda.\nLambda = 2\n\n2020-05-22T12:16:29: niter=27, f=36.3672, fbest=36.4279\nposition: x[0]=2.4955 x[1]=0.246889 x[2]=0.905143 x[3]=1.425 x[4]=0.68455 x[5]=0.659052 \n\n2020-05-22T12:16:29: niter=28, f=36.3536, fbest=36.3672\nposition: x[0]=2.4951 x[1]=0.246867 x[2]=0.903184 x[3]=1.425 x[4]=0.686297 x[5]=0.660445 \n\n2020-05-22T12:16:29: niter=29, f=36.4699, fbest=36.3536\nposition: x[0]=2.49517 x[1]=0.246925 x[2]=0.896088 x[3]=1.425 x[4]=0.689608 x[5]=0.662637 \n\n2020-05-22T12:16:29: Iteration 28: Restarting iteration with increased lambda.\nLambda = 2\n\n2020-05-22T12:16:29: niter=29, f=36.2969, fbest=36.3536\nposition: x[0]=2.49378 x[1]=0.246868 x[2]=0.903734 x[3]=1.425 x[4]=0.686897 x[5]=0.661531 \n\n2020-05-22T12:16:29: niter=30, f=36.2749, fbest=36.2969\nposition: x[0]=2.49069 x[1]=0.24681 x[2]=0.901607 x[3]=1.425 x[4]=0.688733 x[5]=0.662712 \n\n2020-05-22T12:16:29: niter=31, f=36.4041, fbest=36.2749\nposition: x[0]=2.49191 x[1]=0.246869 x[2]=0.894568 x[3]=1.425 x[4]=0.691939 x[5]=0.6648 \n\n2020-05-22T12:16:29: Iteration 30: Restarting iteration with increased lambda.\nLambda = 2\n\n2020-05-22T12:16:29: niter=31, f=36.2281, fbest=36.2749\nposition: x[0]=2.48987 x[1]=0.246804 x[2]=0.9021 x[3]=1.425 x[4]=0.689333 x[5]=0.663743 \n\n2020-05-22T12:16:29: niter=32, f=36.2255, fbest=36.2281\nposition: x[0]=2.49019 x[1]=0.246793 x[2]=0.900177 x[3]=1.425 x[4]=0.690926 x[5]=0.665009 \n\n2020-05-22T12:16:29: niter=33, f=36.3579, fbest=36.2255\nposition: x[0]=2.49111 x[1]=0.246875 x[2]=0.89323 x[3]=1.425 x[4]=0.69395 x[5]=0.66699 \n\n2020-05-22T12:16:29: Iteration 32: Restarting iteration with increased lambda.\nLambda = 2\n\n2020-05-22T12:16:29: niter=33, f=36.1743, fbest=36.2255\nposition: x[0]=2.48916 x[1]=0.2468 x[2]=0.900754 x[3]=1.425 x[4]=0.691451 x[5]=0.666041 \n\n2020-05-22T12:16:29: niter=34, f=36.1734, fbest=36.1743\nposition: x[0]=2.48927 x[1]=0.246797 x[2]=0.898858 x[3]=1.425 x[4]=0.692981 x[5]=0.667255 \n\n2020-05-22T12:16:29: niter=35, f=36.3174, fbest=36.1734\nposition: x[0]=2.49071 x[1]=0.246873 x[2]=0.891938 x[3]=1.425 x[4]=0.695115 x[5]=0.668728 \n\n2020-05-22T12:16:29: Iteration 34: Restarting iteration with increased lambda.\nLambda = 2\n\n2020-05-22T12:16:29: niter=35, f=36.124, fbest=36.1734\nposition: x[0]=2.4883 x[1]=0.246804 x[2]=0.899423 x[3]=1.425 x[4]=0.693246 x[5]=0.668201 \n\n2020-05-22T12:16:29: niter=36, f=36.1276, fbest=36.124\nposition: x[0]=2.48841 x[1]=0.246806 x[2]=0.897562 x[3]=1.425 x[4]=0.694764 x[5]=0.669306 \n\n2020-05-22T12:16:29: Iteration 35: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:29: niter=36, f=36.0937, fbest=36.124\nposition: x[0]=2.48752 x[1]=0.246805 x[2]=0.900107 x[3]=1.425 x[4]=0.693439 x[5]=0.668794 \n\n2020-05-22T12:16:29: niter=37, f=36.0762, fbest=36.0937\nposition: x[0]=2.4873 x[1]=0.246788 x[2]=0.89997 x[3]=1.425 x[4]=0.694159 x[5]=0.669492 \n\n2020-05-22T12:16:29: niter=38, f=36.0916, fbest=36.0762\nposition: x[0]=2.48775 x[1]=0.246782 x[2]=0.897504 x[3]=1.425 x[4]=0.695727 x[5]=0.670445 \n\n2020-05-22T12:16:29: Iteration 37: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:29: niter=38, f=36.0571, fbest=36.0762\nposition: x[0]=2.48677 x[1]=0.246783 x[2]=0.900349 x[3]=1.425 x[4]=0.694407 x[5]=0.669993 \n\n2020-05-22T12:16:29: niter=39, f=36.0317, fbest=36.0571\nposition: x[0]=2.48692 x[1]=0.246756 x[2]=0.902371 x[3]=1.425 x[4]=0.69535 x[5]=0.670545 \n\n2020-05-22T12:16:29: niter=40, f=36.0478, fbest=36.0317\nposition: x[0]=2.48742 x[1]=0.246728 x[2]=0.898884 x[3]=1.425 x[4]=0.696783 x[5]=0.671461 \n\n2020-05-22T12:16:29: Iteration 39: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:29: niter=40, f=36.0205, fbest=36.0317\nposition: x[0]=2.48656 x[1]=0.246739 x[2]=0.902265 x[3]=1.425 x[4]=0.695586 x[5]=0.67099 \n\n2020-05-22T12:16:29: niter=41, f=36.0129, fbest=36.0205\nposition: x[0]=2.48652 x[1]=0.246714 x[2]=0.901226 x[3]=1.425 x[4]=0.69626 x[5]=0.671581 \n\n2020-05-22T12:16:29: niter=42, f=36.0302, fbest=36.0129\nposition: x[0]=2.48687 x[1]=0.246716 x[2]=0.898 x[3]=1.425 x[4]=0.697686 x[5]=0.672458 \n\n2020-05-22T12:16:29: Iteration 41: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:29: niter=42, f=36.0003, fbest=36.0129\nposition: x[0]=2.48605 x[1]=0.24671 x[2]=0.901247 x[3]=1.425 x[4]=0.696487 x[5]=0.672028 \n\n2020-05-22T12:16:29: niter=43, f=35.9928, fbest=36.0003\nposition: x[0]=2.48594 x[1]=0.2467 x[2]=0.900345 x[3]=1.425 x[4]=0.697158 x[5]=0.672601 \n\n2020-05-22T12:16:29: niter=44, f=36.0116, fbest=35.9928\nposition: x[0]=2.48628 x[1]=0.246713 x[2]=0.897241 x[3]=1.425 x[4]=0.698575 x[5]=0.673436 \n\n2020-05-22T12:16:29: Iteration 43: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:29: niter=44, f=35.98, fbest=35.9928\nposition: x[0]=2.48545 x[1]=0.246701 x[2]=0.90042 x[3]=1.425 x[4]=0.697382 x[5]=0.67304 \n\n2020-05-22T12:16:29: niter=45, f=35.973, fbest=35.98\nposition: x[0]=2.48535 x[1]=0.246695 x[2]=0.899585 x[3]=1.425 x[4]=0.698048 x[5]=0.673594 \n\n2020-05-22T12:16:29: niter=46, f=35.9931, fbest=35.973\nposition: x[0]=2.4857 x[1]=0.246712 x[2]=0.896551 x[3]=1.425 x[4]=0.699451 x[5]=0.674392 \n\n2020-05-22T12:16:29: Iteration 45: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:29: niter=46, f=35.9602, fbest=35.973\nposition: x[0]=2.48485 x[1]=0.246698 x[2]=0.899689 x[3]=1.425 x[4]=0.698269 x[5]=0.674025 \n\n2020-05-22T12:16:29: niter=47, f=35.9537, fbest=35.9602\nposition: x[0]=2.48474 x[1]=0.246695 x[2]=0.898892 x[3]=1.425 x[4]=0.698928 x[5]=0.67456 \n\n2020-05-22T12:16:29: niter=48, f=35.9752, fbest=35.9537\nposition: x[0]=2.48512 x[1]=0.246713 x[2]=0.895903 x[3]=1.425 x[4]=0.700312 x[5]=0.675326 \n\n2020-05-22T12:16:29: Iteration 47: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:29: niter=48, f=35.9411, fbest=35.9537\nposition: x[0]=2.48425 x[1]=0.246698 x[2]=0.899013 x[3]=1.425 x[4]=0.699144 x[5]=0.674984 \n\n2020-05-22T12:16:29: niter=49, f=35.9353, fbest=35.9411\nposition: x[0]=2.48415 x[1]=0.246695 x[2]=0.898241 x[3]=1.425 x[4]=0.699793 x[5]=0.675503 \n\n2020-05-22T12:16:29: niter=50, f=35.9575, fbest=35.9353\nposition: x[0]=2.4844 x[1]=0.246707 x[2]=0.895283 x[3]=1.425 x[4]=0.701165 x[5]=0.676231 \n\n2020-05-22T12:16:29: Iteration 49: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:29: niter=50, f=35.9228, fbest=35.9353\nposition: x[0]=2.48364 x[1]=0.246695 x[2]=0.898374 x[3]=1.425 x[4]=0.700004 x[5]=0.675919 \n\n2020-05-22T12:16:29: niter=51, f=35.9175, fbest=35.9228\nposition: x[0]=2.48356 x[1]=0.246693 x[2]=0.897621 x[3]=1.425 x[4]=0.700643 x[5]=0.676422 \n\n2020-05-22T12:16:29: niter=52, f=35.9416, fbest=35.9175\nposition: x[0]=2.48399 x[1]=0.246712 x[2]=0.894692 x[3]=1.425 x[4]=0.701983 x[5]=0.677129 \n\n2020-05-22T12:16:29: Iteration 51: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:29: niter=52, f=35.9054, fbest=35.9175\nposition: x[0]=2.48308 x[1]=0.246696 x[2]=0.897765 x[3]=1.425 x[4]=0.700848 x[5]=0.676832 \n\n2020-05-22T12:16:29: niter=53, f=35.9008, fbest=35.9054\nposition: x[0]=2.48306 x[1]=0.246697 x[2]=0.897027 x[3]=1.425 x[4]=0.701472 x[5]=0.677324 \n\n2020-05-22T12:16:29: niter=54, f=35.9259, fbest=35.9008\nposition: x[0]=2.48351 x[1]=0.246715 x[2]=0.894121 x[3]=1.425 x[4]=0.702787 x[5]=0.678004 \n\n2020-05-22T12:16:29: Iteration 53: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:29: niter=54, f=35.8888, fbest=35.9008\nposition: x[0]=2.48258 x[1]=0.246699 x[2]=0.89718 x[3]=1.425 x[4]=0.701669 x[5]=0.677728 \n\n2020-05-22T12:16:30: niter=55, f=35.8845, fbest=35.8888\nposition: x[0]=2.48252 x[1]=0.246696 x[2]=0.896452 x[3]=1.425 x[4]=0.702283 x[5]=0.678205 \n\n2020-05-22T12:16:30: niter=56, f=35.9108, fbest=35.8845\nposition: x[0]=2.48299 x[1]=0.246715 x[2]=0.893556 x[3]=1.425 x[4]=0.703576 x[5]=0.678858 \n\n2020-05-22T12:16:30: Iteration 55: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:30: niter=56, f=35.8729, fbest=35.8845\nposition: x[0]=2.48205 x[1]=0.246699 x[2]=0.896607 x[3]=1.425 x[4]=0.702475 x[5]=0.678602 \n\n2020-05-22T12:16:30: niter=57, f=35.8692, fbest=35.8729\nposition: x[0]=2.48199 x[1]=0.246696 x[2]=0.895887 x[3]=1.425 x[4]=0.703078 x[5]=0.679065 \n\n2020-05-22T12:16:30: niter=58, f=35.8963, fbest=35.8692\nposition: x[0]=2.48248 x[1]=0.246715 x[2]=0.89301 x[3]=1.425 x[4]=0.704349 x[5]=0.679691 \n\n2020-05-22T12:16:30: Iteration 57: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:30: niter=58, f=35.8578, fbest=35.8692\nposition: x[0]=2.48152 x[1]=0.246699 x[2]=0.896049 x[3]=1.425 x[4]=0.703264 x[5]=0.679456 \n\n2020-05-22T12:16:30: niter=59, f=35.8545, fbest=35.8578\nposition: x[0]=2.4815 x[1]=0.246696 x[2]=0.895341 x[3]=1.425 x[4]=0.703854 x[5]=0.679907 \n\n2020-05-22T12:16:30: niter=60, f=35.8826, fbest=35.8545\nposition: x[0]=2.482 x[1]=0.246715 x[2]=0.892482 x[3]=1.425 x[4]=0.705103 x[5]=0.680507 \n\n2020-05-22T12:16:30: Iteration 59: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:30: niter=60, f=35.8432, fbest=35.8545\nposition: x[0]=2.48104 x[1]=0.246699 x[2]=0.895509 x[3]=1.425 x[4]=0.704034 x[5]=0.680291 \n\n2020-05-22T12:16:30: niter=61, f=35.8403, fbest=35.8432\nposition: x[0]=2.481 x[1]=0.246696 x[2]=0.89481 x[3]=1.425 x[4]=0.70462 x[5]=0.680731 \n\n2020-05-22T12:16:30: niter=62, f=35.8693, fbest=35.8403\nposition: x[0]=2.48153 x[1]=0.246717 x[2]=0.891963 x[3]=1.425 x[4]=0.705845 x[5]=0.681307 \n\n2020-05-22T12:16:30: Iteration 61: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:30: niter=62, f=35.8292, fbest=35.8403\nposition: x[0]=2.48054 x[1]=0.246699 x[2]=0.894983 x[3]=1.425 x[4]=0.704793 x[5]=0.68111 \n\n2020-05-22T12:16:30: niter=63, f=35.8268, fbest=35.8292\nposition: x[0]=2.48051 x[1]=0.246696 x[2]=0.89429 x[3]=1.425 x[4]=0.705361 x[5]=0.681536 \n\n2020-05-22T12:16:30: niter=64, f=35.8566, fbest=35.8268\nposition: x[0]=2.48105 x[1]=0.246715 x[2]=0.891459 x[3]=1.425 x[4]=0.70658 x[5]=0.682093 \n\n2020-05-22T12:16:30: Iteration 63: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:30: niter=64, f=35.8159, fbest=35.8268\nposition: x[0]=2.48006 x[1]=0.246698 x[2]=0.894468 x[3]=1.425 x[4]=0.705534 x[5]=0.68191 \n\n2020-05-22T12:16:30: niter=65, f=35.8139, fbest=35.8159\nposition: x[0]=2.48004 x[1]=0.246695 x[2]=0.893783 x[3]=1.425 x[4]=0.70609 x[5]=0.682324 \n\n2020-05-22T12:16:30: niter=66, f=35.8446, fbest=35.8139\nposition: x[0]=2.4806 x[1]=0.246715 x[2]=0.890965 x[3]=1.425 x[4]=0.707273 x[5]=0.682851 \n\n2020-05-22T12:16:30: Iteration 65: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:30: niter=66, f=35.8032, fbest=35.8139\nposition: x[0]=2.47959 x[1]=0.246698 x[2]=0.893965 x[3]=1.425 x[4]=0.706252 x[5]=0.682691 \n\n2020-05-22T12:16:30: niter=67, f=35.8016, fbest=35.8032\nposition: x[0]=2.47958 x[1]=0.246695 x[2]=0.893288 x[3]=1.425 x[4]=0.706799 x[5]=0.683093 \n\n2020-05-22T12:16:30: niter=68, f=35.8331, fbest=35.8016\nposition: x[0]=2.48016 x[1]=0.246714 x[2]=0.890483 x[3]=1.425 x[4]=0.707961 x[5]=0.683596 \n\n2020-05-22T12:16:30: Iteration 67: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:30: niter=68, f=35.7911, fbest=35.8016\nposition: x[0]=2.47913 x[1]=0.246697 x[2]=0.893474 x[3]=1.425 x[4]=0.706955 x[5]=0.683454 \n\n2020-05-22T12:16:30: niter=69, f=35.7898, fbest=35.7911\nposition: x[0]=2.47913 x[1]=0.246694 x[2]=0.892804 x[3]=1.425 x[4]=0.707491 x[5]=0.683844 \n\n2020-05-22T12:16:30: niter=70, f=35.8262, fbest=35.7898\nposition: x[0]=2.48069 x[1]=0.246729 x[2]=0.89009 x[3]=1.425 x[4]=0.708578 x[5]=0.684368 \n\n2020-05-22T12:16:30: Iteration 69: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:30: niter=70, f=35.7804, fbest=35.7898\nposition: x[0]=2.47899 x[1]=0.246699 x[2]=0.89301 x[3]=1.425 x[4]=0.707633 x[5]=0.684209 \n\n2020-05-22T12:16:30: niter=71, f=35.7791, fbest=35.7804\nposition: x[0]=2.47894 x[1]=0.246698 x[2]=0.892359 x[3]=1.425 x[4]=0.708153 x[5]=0.684592 \n\n2020-05-22T12:16:30: niter=72, f=35.8119, fbest=35.7791\nposition: x[0]=2.47948 x[1]=0.246718 x[2]=0.889573 x[3]=1.425 x[4]=0.709274 x[5]=0.685048 \n\n2020-05-22T12:16:30: Iteration 71: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:30: niter=72, f=35.7687, fbest=35.7791\nposition: x[0]=2.47847 x[1]=0.246701 x[2]=0.892554 x[3]=1.425 x[4]=0.708297 x[5]=0.684943 \n\n2020-05-22T12:16:30: niter=73, f=35.7681, fbest=35.7687\nposition: x[0]=2.47846 x[1]=0.246698 x[2]=0.891895 x[3]=1.425 x[4]=0.708812 x[5]=0.68531 \n\n2020-05-22T12:16:30: niter=74, f=35.8018, fbest=35.7681\nposition: x[0]=2.47905 x[1]=0.246718 x[2]=0.889116 x[3]=1.425 x[4]=0.709901 x[5]=0.685736 \n\n2020-05-22T12:16:30: Iteration 73: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:30: niter=74, f=35.7581, fbest=35.7681\nposition: x[0]=2.47801 x[1]=0.246701 x[2]=0.89209 x[3]=1.425 x[4]=0.708947 x[5]=0.685654 \n\n2020-05-22T12:16:30: niter=75, f=35.7579, fbest=35.7581\nposition: x[0]=2.47801 x[1]=0.246698 x[2]=0.891436 x[3]=1.425 x[4]=0.709454 x[5]=0.686008 \n\n2020-05-22T12:16:30: niter=76, f=35.7919, fbest=35.7579\nposition: x[0]=2.47853 x[1]=0.246717 x[2]=0.888663 x[3]=1.425 x[4]=0.710547 x[5]=0.686414 \n\n2020-05-22T12:16:30: Iteration 75: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:30: niter=76, f=35.7479, fbest=35.7579\nposition: x[0]=2.47754 x[1]=0.2467 x[2]=0.891634 x[3]=1.425 x[4]=0.709592 x[5]=0.686346 \n\n2020-05-22T12:16:30: niter=77, f=35.7481, fbest=35.7479\nposition: x[0]=2.47756 x[1]=0.246697 x[2]=0.890985 x[3]=1.425 x[4]=0.71009 x[5]=0.68669 \n\n2020-05-22T12:16:30: Iteration 76: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=77, f=35.7415, fbest=35.7479\nposition: x[0]=2.47722 x[1]=0.246701 x[2]=0.891865 x[3]=1.425 x[4]=0.709631 x[5]=0.686557 \n\n2020-05-22T12:16:30: niter=78, f=35.7368, fbest=35.7415\nposition: x[0]=2.47704 x[1]=0.246696 x[2]=0.891871 x[3]=1.425 x[4]=0.709834 x[5]=0.686813 \n\n2020-05-22T12:16:30: niter=79, f=35.7393, fbest=35.7368\nposition: x[0]=2.47725 x[1]=0.246689 x[2]=0.891056 x[3]=1.425 x[4]=0.710379 x[5]=0.687089 \n\n2020-05-22T12:16:30: Iteration 78: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=79, f=35.7326, fbest=35.7368\nposition: x[0]=2.47681 x[1]=0.246695 x[2]=0.892024 x[3]=1.425 x[4]=0.709899 x[5]=0.68699 \n\n2020-05-22T12:16:30: niter=80, f=35.7294, fbest=35.7326\nposition: x[0]=2.47673 x[1]=0.246688 x[2]=0.891937 x[3]=1.425 x[4]=0.710128 x[5]=0.687208 \n\n2020-05-22T12:16:30: niter=81, f=35.7328, fbest=35.7294\nposition: x[0]=2.47702 x[1]=0.24668 x[2]=0.891033 x[3]=1.425 x[4]=0.710677 x[5]=0.687449 \n\n2020-05-22T12:16:30: Iteration 80: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=81, f=35.726, fbest=35.7294\nposition: x[0]=2.47655 x[1]=0.246686 x[2]=0.892049 x[3]=1.425 x[4]=0.7102 x[5]=0.68737 \n\n2020-05-22T12:16:30: niter=82, f=35.7235, fbest=35.726\nposition: x[0]=2.47651 x[1]=0.24668 x[2]=0.891913 x[3]=1.425 x[4]=0.710438 x[5]=0.687569 \n\n2020-05-22T12:16:30: niter=83, f=35.7287, fbest=35.7235\nposition: x[0]=2.47678 x[1]=0.246674 x[2]=0.89081 x[3]=1.425 x[4]=0.710987 x[5]=0.687752 \n\n2020-05-22T12:16:30: Iteration 82: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=83, f=35.7208, fbest=35.7235\nposition: x[0]=2.47633 x[1]=0.246678 x[2]=0.891952 x[3]=1.425 x[4]=0.710515 x[5]=0.68771 \n\n2020-05-22T12:16:30: niter=84, f=35.7185, fbest=35.7208\nposition: x[0]=2.4763 x[1]=0.246672 x[2]=0.891799 x[3]=1.425 x[4]=0.710753 x[5]=0.687903 \n\n2020-05-22T12:16:30: niter=85, f=35.7223, fbest=35.7185\nposition: x[0]=2.47662 x[1]=0.246667 x[2]=0.890827 x[3]=1.425 x[4]=0.711311 x[5]=0.688122 \n\n2020-05-22T12:16:30: Iteration 84: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=85, f=35.7155, fbest=35.7185\nposition: x[0]=2.47613 x[1]=0.246671 x[2]=0.891883 x[3]=1.425 x[4]=0.710831 x[5]=0.688054 \n\n2020-05-22T12:16:30: niter=86, f=35.714, fbest=35.7155\nposition: x[0]=2.4759 x[1]=0.246664 x[2]=0.89171 x[3]=1.425 x[4]=0.711064 x[5]=0.688165 \n\n2020-05-22T12:16:30: niter=87, f=35.718, fbest=35.714\nposition: x[0]=2.47625 x[1]=0.246659 x[2]=0.890713 x[3]=1.425 x[4]=0.711612 x[5]=0.688383 \n\n2020-05-22T12:16:30: Iteration 86: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=87, f=35.7112, fbest=35.714\nposition: x[0]=2.47574 x[1]=0.246663 x[2]=0.891784 x[3]=1.425 x[4]=0.71114 x[5]=0.688315 \n\n2020-05-22T12:16:30: niter=88, f=35.7092, fbest=35.7112\nposition: x[0]=2.47577 x[1]=0.246658 x[2]=0.891597 x[3]=1.425 x[4]=0.71138 x[5]=0.688503 \n\n2020-05-22T12:16:30: niter=89, f=35.7134, fbest=35.7092\nposition: x[0]=2.47611 x[1]=0.246654 x[2]=0.890582 x[3]=1.425 x[4]=0.711904 x[5]=0.688711 \n\n2020-05-22T12:16:30: Iteration 88: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=89, f=35.7065, fbest=35.7092\nposition: x[0]=2.47561 x[1]=0.246657 x[2]=0.891665 x[3]=1.425 x[4]=0.711449 x[5]=0.688651 \n\n2020-05-22T12:16:30: niter=90, f=35.7046, fbest=35.7065\nposition: x[0]=2.4756 x[1]=0.246652 x[2]=0.891466 x[3]=1.425 x[4]=0.711679 x[5]=0.688833 \n\n2020-05-22T12:16:30: niter=91, f=35.7089, fbest=35.7046\nposition: x[0]=2.47594 x[1]=0.246649 x[2]=0.890438 x[3]=1.425 x[4]=0.712216 x[5]=0.689037 \n\n2020-05-22T12:16:30: Iteration 90: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=91, f=35.702, fbest=35.7046\nposition: x[0]=2.47544 x[1]=0.246652 x[2]=0.891529 x[3]=1.425 x[4]=0.711753 x[5]=0.688978 \n\n2020-05-22T12:16:30: niter=92, f=35.7002, fbest=35.702\nposition: x[0]=2.47543 x[1]=0.246648 x[2]=0.891322 x[3]=1.425 x[4]=0.71198 x[5]=0.689156 \n\n2020-05-22T12:16:30: niter=93, f=35.7046, fbest=35.7002\nposition: x[0]=2.47577 x[1]=0.246646 x[2]=0.890283 x[3]=1.425 x[4]=0.712512 x[5]=0.689355 \n\n2020-05-22T12:16:30: Iteration 92: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=93, f=35.6977, fbest=35.7002\nposition: x[0]=2.47528 x[1]=0.246648 x[2]=0.89138 x[3]=1.425 x[4]=0.712053 x[5]=0.6893 \n\n2020-05-22T12:16:30: niter=94, f=35.696, fbest=35.6977\nposition: x[0]=2.47526 x[1]=0.246642 x[2]=0.891169 x[3]=1.425 x[4]=0.712278 x[5]=0.689475 \n\n2020-05-22T12:16:30: niter=95, f=35.7004, fbest=35.696\nposition: x[0]=2.47559 x[1]=0.246646 x[2]=0.890124 x[3]=1.425 x[4]=0.712826 x[5]=0.689674 \n\n2020-05-22T12:16:30: Iteration 94: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=95, f=35.6934, fbest=35.696\nposition: x[0]=2.4751 x[1]=0.246644 x[2]=0.891226 x[3]=1.425 x[4]=0.712356 x[5]=0.689618 \n\n2020-05-22T12:16:30: niter=96, f=35.6918, fbest=35.6934\nposition: x[0]=2.47509 x[1]=0.246641 x[2]=0.891009 x[3]=1.425 x[4]=0.712577 x[5]=0.689791 \n\n2020-05-22T12:16:30: niter=97, f=35.6964, fbest=35.6918\nposition: x[0]=2.47542 x[1]=0.246641 x[2]=0.889957 x[3]=1.425 x[4]=0.713098 x[5]=0.68998 \n\n2020-05-22T12:16:30: Iteration 96: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=97, f=35.6893, fbest=35.6918\nposition: x[0]=2.47493 x[1]=0.246641 x[2]=0.891063 x[3]=1.425 x[4]=0.712647 x[5]=0.689932 \n\n2020-05-22T12:16:30: niter=98, f=35.6874, fbest=35.6893\nposition: x[0]=2.47488 x[1]=0.246639 x[2]=0.890858 x[3]=1.425 x[4]=0.712983 x[5]=0.690121 \n\n2020-05-22T12:16:30: niter=99, f=35.692, fbest=35.6874\nposition: x[0]=2.47518 x[1]=0.246638 x[2]=0.889797 x[3]=1.425 x[4]=0.713477 x[5]=0.690323 \n\n2020-05-22T12:16:30: Iteration 98: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=99, f=35.6848, fbest=35.6874\nposition: x[0]=2.4747 x[1]=0.246639 x[2]=0.890912 x[3]=1.425 x[4]=0.713043 x[5]=0.690269 \n\n2020-05-22T12:16:30: niter=100, f=35.6839, fbest=35.6848\nposition: x[0]=2.47517 x[1]=0.246673 x[2]=0.890732 x[3]=1.425 x[4]=0.713405 x[5]=0.69049 \n\n2020-05-22T12:16:30: niter=101, f=35.6881, fbest=35.6839\nposition: x[0]=2.47538 x[1]=0.246664 x[2]=0.889655 x[3]=1.425 x[4]=0.713854 x[5]=0.690718 \n\n2020-05-22T12:16:30: Iteration 100: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=101, f=35.6809, fbest=35.6839\nposition: x[0]=2.47497 x[1]=0.24667 x[2]=0.890788 x[3]=1.425 x[4]=0.713448 x[5]=0.69065 \n\n2020-05-22T12:16:30: niter=102, f=35.679, fbest=35.6809\nposition: x[0]=2.47489 x[1]=0.246663 x[2]=0.890554 x[3]=1.425 x[4]=0.713613 x[5]=0.690839 \n\n2020-05-22T12:16:30: niter=103, f=35.6838, fbest=35.679\nposition: x[0]=2.47516 x[1]=0.246657 x[2]=0.889463 x[3]=1.425 x[4]=0.714087 x[5]=0.691035 \n\n2020-05-22T12:16:30: Iteration 102: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=103, f=35.6764, fbest=35.679\nposition: x[0]=2.47471 x[1]=0.246661 x[2]=0.890599 x[3]=1.425 x[4]=0.713667 x[5]=0.690986 \n\n2020-05-22T12:16:30: niter=104, f=35.6749, fbest=35.6764\nposition: x[0]=2.47466 x[1]=0.246655 x[2]=0.890358 x[3]=1.425 x[4]=0.713862 x[5]=0.69116 \n\n2020-05-22T12:16:30: niter=105, f=35.6799, fbest=35.6749\nposition: x[0]=2.47495 x[1]=0.246651 x[2]=0.889267 x[3]=1.425 x[4]=0.714345 x[5]=0.691339 \n\n2020-05-22T12:16:30: Iteration 104: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=105, f=35.6725, fbest=35.6749\nposition: x[0]=2.47449 x[1]=0.246654 x[2]=0.8904 x[3]=1.425 x[4]=0.71392 x[5]=0.6913 \n\n2020-05-22T12:16:30: niter=106, f=35.6712, fbest=35.6725\nposition: x[0]=2.47446 x[1]=0.24665 x[2]=0.890159 x[3]=1.425 x[4]=0.71412 x[5]=0.691466 \n\n2020-05-22T12:16:30: niter=107, f=35.6764, fbest=35.6712\nposition: x[0]=2.47478 x[1]=0.246648 x[2]=0.889069 x[3]=1.425 x[4]=0.714571 x[5]=0.691624 \n\n2020-05-22T12:16:30: Iteration 106: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=107, f=35.6689, fbest=35.6712\nposition: x[0]=2.47429 x[1]=0.246649 x[2]=0.890201 x[3]=1.425 x[4]=0.714169 x[5]=0.691601 \n\n2020-05-22T12:16:30: niter=108, f=35.6677, fbest=35.6689\nposition: x[0]=2.47427 x[1]=0.246646 x[2]=0.889961 x[3]=1.425 x[4]=0.714371 x[5]=0.69176 \n\n2020-05-22T12:16:30: niter=109, f=35.673, fbest=35.6677\nposition: x[0]=2.47458 x[1]=0.246645 x[2]=0.88888 x[3]=1.425 x[4]=0.714857 x[5]=0.691919 \n\n2020-05-22T12:16:30: Iteration 108: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=109, f=35.6654, fbest=35.6677\nposition: x[0]=2.47411 x[1]=0.246646 x[2]=0.890005 x[3]=1.425 x[4]=0.714432 x[5]=0.691893 \n\n2020-05-22T12:16:30: niter=110, f=35.6643, fbest=35.6654\nposition: x[0]=2.47408 x[1]=0.246643 x[2]=0.889768 x[3]=1.425 x[4]=0.714633 x[5]=0.692049 \n\n2020-05-22T12:16:30: niter=111, f=35.6697, fbest=35.6643\nposition: x[0]=2.4744 x[1]=0.246643 x[2]=0.888692 x[3]=1.425 x[4]=0.715117 x[5]=0.692202 \n\n2020-05-22T12:16:30: Iteration 110: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=111, f=35.6621, fbest=35.6643\nposition: x[0]=2.47392 x[1]=0.246643 x[2]=0.889813 x[3]=1.425 x[4]=0.714694 x[5]=0.692181 \n\n2020-05-22T12:16:30: niter=112, f=35.661, fbest=35.6621\nposition: x[0]=2.47396 x[1]=0.246641 x[2]=0.889586 x[3]=1.425 x[4]=0.714912 x[5]=0.692339 \n\n2020-05-22T12:16:30: niter=113, f=35.6665, fbest=35.661\nposition: x[0]=2.47426 x[1]=0.246642 x[2]=0.888516 x[3]=1.425 x[4]=0.715387 x[5]=0.692491 \n\n2020-05-22T12:16:30: Iteration 112: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=113, f=35.6588, fbest=35.661\nposition: x[0]=2.47379 x[1]=0.246641 x[2]=0.889634 x[3]=1.425 x[4]=0.714969 x[5]=0.692472 \n\n2020-05-22T12:16:30: niter=114, f=35.6577, fbest=35.6588\nposition: x[0]=2.47376 x[1]=0.246639 x[2]=0.889404 x[3]=1.425 x[4]=0.715165 x[5]=0.692624 \n\n2020-05-22T12:16:30: niter=115, f=35.663, fbest=35.6577\nposition: x[0]=2.47394 x[1]=0.246639 x[2]=0.888326 x[3]=1.425 x[4]=0.715646 x[5]=0.692764 \n\n2020-05-22T12:16:30: Iteration 114: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=115, f=35.6554, fbest=35.6577\nposition: x[0]=2.47356 x[1]=0.24664 x[2]=0.88945 x[3]=1.425 x[4]=0.715223 x[5]=0.692754 \n\n2020-05-22T12:16:30: niter=116, f=35.6545, fbest=35.6554\nposition: x[0]=2.47355 x[1]=0.246638 x[2]=0.889217 x[3]=1.425 x[4]=0.7154 x[5]=0.692898 \n\n2020-05-22T12:16:30: niter=117, f=35.6602, fbest=35.6545\nposition: x[0]=2.47388 x[1]=0.246639 x[2]=0.88815 x[3]=1.425 x[4]=0.715877 x[5]=0.693034 \n\n2020-05-22T12:16:30: Iteration 116: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=117, f=35.6524, fbest=35.6545\nposition: x[0]=2.47339 x[1]=0.246638 x[2]=0.889264 x[3]=1.425 x[4]=0.715459 x[5]=0.693025 \n\n2020-05-22T12:16:30: niter=118, f=35.6514, fbest=35.6524\nposition: x[0]=2.47337 x[1]=0.24664 x[2]=0.889035 x[3]=1.425 x[4]=0.715675 x[5]=0.693172 \n\n2020-05-22T12:16:30: niter=119, f=35.6524, fbest=35.6514\nposition: x[0]=2.4694 x[1]=0.246499 x[2]=0.887903 x[3]=1.425 x[4]=0.715699 x[5]=0.692911 \n\n2020-05-22T12:16:30: Iteration 118: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=119, f=35.6478, fbest=35.6514\nposition: x[0]=2.47188 x[1]=0.246597 x[2]=0.88906 x[3]=1.425 x[4]=0.715566 x[5]=0.693253 \n\n2020-05-22T12:16:30: niter=120, f=35.6475, fbest=35.6478\nposition: x[0]=2.47207 x[1]=0.246596 x[2]=0.888785 x[3]=1.425 x[4]=0.715814 x[5]=0.693347 \n\n2020-05-22T12:16:30: niter=121, f=35.6538, fbest=35.6475\nposition: x[0]=2.47262 x[1]=0.246597 x[2]=0.887721 x[3]=1.425 x[4]=0.71633 x[5]=0.693441 \n\n2020-05-22T12:16:30: Iteration 120: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=121, f=35.646, fbest=35.6475\nposition: x[0]=2.472 x[1]=0.246596 x[2]=0.888819 x[3]=1.425 x[4]=0.715892 x[5]=0.693455 \n\n2020-05-22T12:16:30: niter=122, f=35.6455, fbest=35.646\nposition: x[0]=2.47215 x[1]=0.246598 x[2]=0.888535 x[3]=1.425 x[4]=0.716051 x[5]=0.693595 \n\n2020-05-22T12:16:30: niter=123, f=35.6518, fbest=35.6455\nposition: x[0]=2.47265 x[1]=0.246606 x[2]=0.887507 x[3]=1.425 x[4]=0.716552 x[5]=0.693697 \n\n2020-05-22T12:16:30: Iteration 122: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=123, f=35.6438, fbest=35.6455\nposition: x[0]=2.47205 x[1]=0.246601 x[2]=0.888587 x[3]=1.425 x[4]=0.716121 x[5]=0.693708 \n\n2020-05-22T12:16:30: niter=124, f=35.6432, fbest=35.6438\nposition: x[0]=2.47212 x[1]=0.246603 x[2]=0.888378 x[3]=1.425 x[4]=0.716332 x[5]=0.693834 \n\n2020-05-22T12:16:30: niter=125, f=35.6495, fbest=35.6432\nposition: x[0]=2.47259 x[1]=0.24661 x[2]=0.887336 x[3]=1.425 x[4]=0.716812 x[5]=0.69395 \n\n2020-05-22T12:16:30: Iteration 124: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=125, f=35.6413, fbest=35.6432\nposition: x[0]=2.472 x[1]=0.246605 x[2]=0.888431 x[3]=1.425 x[4]=0.716394 x[5]=0.693954 \n\n2020-05-22T12:16:30: niter=126, f=35.6406, fbest=35.6413\nposition: x[0]=2.47205 x[1]=0.246606 x[2]=0.888233 x[3]=1.425 x[4]=0.716592 x[5]=0.694087 \n\n2020-05-22T12:16:30: niter=127, f=35.6468, fbest=35.6406\nposition: x[0]=2.47249 x[1]=0.246613 x[2]=0.887216 x[3]=1.425 x[4]=0.717059 x[5]=0.694205 \n\n2020-05-22T12:16:30: Iteration 126: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=127, f=35.6386, fbest=35.6406\nposition: x[0]=2.47192 x[1]=0.246608 x[2]=0.888295 x[3]=1.425 x[4]=0.716649 x[5]=0.694209 \n\n2020-05-22T12:16:30: niter=128, f=35.6379, fbest=35.6386\nposition: x[0]=2.47196 x[1]=0.246609 x[2]=0.888093 x[3]=1.425 x[4]=0.716841 x[5]=0.694345 \n\n2020-05-22T12:16:30: niter=129, f=35.6442, fbest=35.6379\nposition: x[0]=2.47239 x[1]=0.246615 x[2]=0.88707 x[3]=1.425 x[4]=0.7173 x[5]=0.694463 \n\n2020-05-22T12:16:30: Iteration 128: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=129, f=35.6359, fbest=35.6379\nposition: x[0]=2.47183 x[1]=0.246611 x[2]=0.888154 x[3]=1.425 x[4]=0.716896 x[5]=0.694468 \n\n2020-05-22T12:16:30: niter=130, f=35.6352, fbest=35.6359\nposition: x[0]=2.47186 x[1]=0.246612 x[2]=0.887951 x[3]=1.425 x[4]=0.717083 x[5]=0.694603 \n\n2020-05-22T12:16:30: niter=131, f=35.6416, fbest=35.6352\nposition: x[0]=2.47228 x[1]=0.246617 x[2]=0.886929 x[3]=1.425 x[4]=0.717535 x[5]=0.694719 \n\n2020-05-22T12:16:30: Iteration 130: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=131, f=35.6332, fbest=35.6352\nposition: x[0]=2.47173 x[1]=0.246613 x[2]=0.888012 x[3]=1.425 x[4]=0.717135 x[5]=0.694726 \n\n2020-05-22T12:16:30: niter=132, f=35.6326, fbest=35.6332\nposition: x[0]=2.47176 x[1]=0.246613 x[2]=0.887808 x[3]=1.425 x[4]=0.71732 x[5]=0.69486 \n\n2020-05-22T12:16:30: niter=133, f=35.639, fbest=35.6326\nposition: x[0]=2.47218 x[1]=0.246618 x[2]=0.886784 x[3]=1.425 x[4]=0.717766 x[5]=0.694974 \n\n2020-05-22T12:16:30: Iteration 132: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=133, f=35.6306, fbest=35.6326\nposition: x[0]=2.47162 x[1]=0.246615 x[2]=0.887869 x[3]=1.425 x[4]=0.71737 x[5]=0.694983 \n\n2020-05-22T12:16:30: niter=134, f=35.6299, fbest=35.6306\nposition: x[0]=2.47165 x[1]=0.246615 x[2]=0.887662 x[3]=1.425 x[4]=0.717552 x[5]=0.695115 \n\n2020-05-22T12:16:30: niter=135, f=35.6408, fbest=35.6299\nposition: x[0]=2.47226 x[1]=0.246628 x[2]=0.886446 x[3]=1.425 x[4]=0.718064 x[5]=0.695129 \n\n2020-05-22T12:16:30: Iteration 134: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=135, f=35.6283, fbest=35.6299\nposition: x[0]=2.47154 x[1]=0.246617 x[2]=0.887702 x[3]=1.425 x[4]=0.717611 x[5]=0.695225 \n\n2020-05-22T12:16:30: niter=136, f=35.6263, fbest=35.6283\nposition: x[0]=2.47145 x[1]=0.246615 x[2]=0.887613 x[3]=1.425 x[4]=0.71775 x[5]=0.695407 \n\n2020-05-22T12:16:30: niter=137, f=35.6332, fbest=35.6263\nposition: x[0]=2.47191 x[1]=0.246618 x[2]=0.886544 x[3]=1.425 x[4]=0.718209 x[5]=0.695491 \n\n2020-05-22T12:16:30: Iteration 136: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=137, f=35.6247, fbest=35.6263\nposition: x[0]=2.47134 x[1]=0.246615 x[2]=0.887653 x[3]=1.425 x[4]=0.717808 x[5]=0.695518 \n\n2020-05-22T12:16:30: niter=138, f=35.6244, fbest=35.6247\nposition: x[0]=2.47139 x[1]=0.246615 x[2]=0.887424 x[3]=1.425 x[4]=0.717995 x[5]=0.695635 \n\n2020-05-22T12:16:30: niter=139, f=35.6313, fbest=35.6244\nposition: x[0]=2.47182 x[1]=0.246619 x[2]=0.886377 x[3]=1.425 x[4]=0.718438 x[5]=0.695726 \n\n2020-05-22T12:16:30: Iteration 138: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=139, f=35.6227, fbest=35.6244\nposition: x[0]=2.47126 x[1]=0.246616 x[2]=0.887475 x[3]=1.425 x[4]=0.718046 x[5]=0.69575 \n\n2020-05-22T12:16:30: niter=140, f=35.6223, fbest=35.6227\nposition: x[0]=2.47133 x[1]=0.246616 x[2]=0.887256 x[3]=1.425 x[4]=0.718226 x[5]=0.695871 \n\n2020-05-22T12:16:30: niter=141, f=35.63, fbest=35.6223\nposition: x[0]=2.47206 x[1]=0.246641 x[2]=0.886254 x[3]=1.425 x[4]=0.718755 x[5]=0.696009 \n\n2020-05-22T12:16:30: Iteration 140: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=141, f=35.6206, fbest=35.6223\nposition: x[0]=2.47129 x[1]=0.246623 x[2]=0.887318 x[3]=1.425 x[4]=0.718302 x[5]=0.695994 \n\n2020-05-22T12:16:30: niter=142, f=35.6201, fbest=35.6206\nposition: x[0]=2.4713 x[1]=0.246622 x[2]=0.887111 x[3]=1.425 x[4]=0.71847 x[5]=0.696123 \n\n2020-05-22T12:16:30: niter=143, f=35.6269, fbest=35.6201\nposition: x[0]=2.47169 x[1]=0.246626 x[2]=0.886077 x[3]=1.425 x[4]=0.718897 x[5]=0.696222 \n\n2020-05-22T12:16:30: Iteration 142: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=143, f=35.6182, fbest=35.6201\nposition: x[0]=2.47115 x[1]=0.246623 x[2]=0.887169 x[3]=1.425 x[4]=0.718515 x[5]=0.696242 \n\n2020-05-22T12:16:30: niter=144, f=35.6178, fbest=35.6182\nposition: x[0]=2.47117 x[1]=0.246622 x[2]=0.886958 x[3]=1.425 x[4]=0.718683 x[5]=0.696368 \n\n2020-05-22T12:16:30: niter=145, f=35.6247, fbest=35.6178\nposition: x[0]=2.47157 x[1]=0.246625 x[2]=0.885921 x[3]=1.425 x[4]=0.719103 x[5]=0.696459 \n\n2020-05-22T12:16:30: Iteration 144: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=145, f=35.6159, fbest=35.6178\nposition: x[0]=2.47103 x[1]=0.246623 x[2]=0.887015 x[3]=1.425 x[4]=0.718727 x[5]=0.696485 \n\n2020-05-22T12:16:30: niter=146, f=35.6155, fbest=35.6159\nposition: x[0]=2.47105 x[1]=0.246622 x[2]=0.886805 x[3]=1.425 x[4]=0.718894 x[5]=0.696607 \n\n2020-05-22T12:16:30: niter=147, f=35.6225, fbest=35.6155\nposition: x[0]=2.47145 x[1]=0.246625 x[2]=0.885774 x[3]=1.425 x[4]=0.719313 x[5]=0.696694 \n\n2020-05-22T12:16:30: Iteration 146: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=147, f=35.6136, fbest=35.6155\nposition: x[0]=2.47091 x[1]=0.246623 x[2]=0.886863 x[3]=1.425 x[4]=0.718937 x[5]=0.696724 \n\n2020-05-22T12:16:30: niter=148, f=35.6133, fbest=35.6136\nposition: x[0]=2.47092 x[1]=0.246622 x[2]=0.886654 x[3]=1.425 x[4]=0.719104 x[5]=0.696843 \n\n2020-05-22T12:16:30: niter=149, f=35.6203, fbest=35.6133\nposition: x[0]=2.47133 x[1]=0.246625 x[2]=0.885625 x[3]=1.425 x[4]=0.71952 x[5]=0.696925 \n\n2020-05-22T12:16:30: Iteration 148: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=149, f=35.6115, fbest=35.6133\nposition: x[0]=2.47078 x[1]=0.246623 x[2]=0.886712 x[3]=1.425 x[4]=0.719147 x[5]=0.696958 \n\n2020-05-22T12:16:30: niter=150, f=35.6112, fbest=35.6115\nposition: x[0]=2.4708 x[1]=0.246622 x[2]=0.886504 x[3]=1.425 x[4]=0.719312 x[5]=0.697075 \n\n2020-05-22T12:16:30: niter=151, f=35.6182, fbest=35.6112\nposition: x[0]=2.47121 x[1]=0.246625 x[2]=0.885479 x[3]=1.425 x[4]=0.719726 x[5]=0.697153 \n\n2020-05-22T12:16:30: Iteration 150: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=151, f=35.6093, fbest=35.6112\nposition: x[0]=2.47067 x[1]=0.246623 x[2]=0.886564 x[3]=1.425 x[4]=0.719354 x[5]=0.697189 \n\n2020-05-22T12:16:30: niter=152, f=35.6091, fbest=35.6093\nposition: x[0]=2.47069 x[1]=0.246622 x[2]=0.886357 x[3]=1.425 x[4]=0.719519 x[5]=0.697305 \n\n2020-05-22T12:16:30: niter=153, f=35.6162, fbest=35.6091\nposition: x[0]=2.47109 x[1]=0.246625 x[2]=0.885333 x[3]=1.425 x[4]=0.719929 x[5]=0.697379 \n\n2020-05-22T12:16:30: Iteration 152: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=153, f=35.6073, fbest=35.6091\nposition: x[0]=2.47055 x[1]=0.246623 x[2]=0.886417 x[3]=1.425 x[4]=0.71956 x[5]=0.697418 \n\n2020-05-22T12:16:30: niter=154, f=35.607, fbest=35.6073\nposition: x[0]=2.47057 x[1]=0.246622 x[2]=0.886212 x[3]=1.425 x[4]=0.719723 x[5]=0.697531 \n\n2020-05-22T12:16:30: niter=155, f=35.6143, fbest=35.607\nposition: x[0]=2.47097 x[1]=0.246625 x[2]=0.88519 x[3]=1.425 x[4]=0.72013 x[5]=0.697601 \n\n2020-05-22T12:16:30: Iteration 154: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=155, f=35.6053, fbest=35.607\nposition: x[0]=2.47043 x[1]=0.246623 x[2]=0.886272 x[3]=1.425 x[4]=0.719763 x[5]=0.697643 \n\n2020-05-22T12:16:30: niter=156, f=35.605, fbest=35.6053\nposition: x[0]=2.47044 x[1]=0.246622 x[2]=0.88608 x[3]=1.425 x[4]=0.719964 x[5]=0.69776 \n\n2020-05-22T12:16:30: niter=157, f=35.6122, fbest=35.605\nposition: x[0]=2.47083 x[1]=0.246625 x[2]=0.885062 x[3]=1.425 x[4]=0.720362 x[5]=0.697833 \n\n2020-05-22T12:16:30: Iteration 156: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=157, f=35.6032, fbest=35.605\nposition: x[0]=2.47029 x[1]=0.246623 x[2]=0.886143 x[3]=1.425 x[4]=0.720001 x[5]=0.697874 \n\n2020-05-22T12:16:30: niter=158, f=35.603, fbest=35.6032\nposition: x[0]=2.4703 x[1]=0.246609 x[2]=0.885944 x[3]=1.425 x[4]=0.720158 x[5]=0.697987 \n\n2020-05-22T12:16:30: niter=159, f=35.6136, fbest=35.603\nposition: x[0]=2.47198 x[1]=0.24663 x[2]=0.885043 x[3]=1.425 x[4]=0.720502 x[5]=0.698101 \n\n2020-05-22T12:16:30: Iteration 158: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=159, f=35.6019, fbest=35.603\nposition: x[0]=2.47053 x[1]=0.246613 x[2]=0.886026 x[3]=1.425 x[4]=0.720188 x[5]=0.698105 \n\n2020-05-22T12:16:30: niter=160, f=35.6014, fbest=35.6019\nposition: x[0]=2.47049 x[1]=0.246616 x[2]=0.885834 x[3]=1.425 x[4]=0.720338 x[5]=0.69822 \n\n2020-05-22T12:16:30: niter=161, f=35.6123, fbest=35.6014\nposition: x[0]=2.47075 x[1]=0.246602 x[2]=0.884114 x[3]=1.425 x[4]=0.720546 x[5]=0.698266 \n\n2020-05-22T12:16:30: Iteration 160: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=161, f=35.6003, fbest=35.6014\nposition: x[0]=2.47031 x[1]=0.24661 x[2]=0.885673 x[3]=1.425 x[4]=0.720319 x[5]=0.698333 \n\n2020-05-22T12:16:30: niter=162, f=35.5999, fbest=35.6003\nposition: x[0]=2.47029 x[1]=0.246615 x[2]=0.885499 x[3]=1.425 x[4]=0.720478 x[5]=0.69844 \n\n2020-05-22T12:16:30: niter=163, f=35.605, fbest=35.5999\nposition: x[0]=2.46997 x[1]=0.246613 x[2]=0.884699 x[3]=1.425 x[4]=0.720801 x[5]=0.698393 \n\n2020-05-22T12:16:30: Iteration 162: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=163, f=35.5981, fbest=35.5999\nposition: x[0]=2.46997 x[1]=0.246617 x[2]=0.885589 x[3]=1.425 x[4]=0.720505 x[5]=0.698512 \n\n2020-05-22T12:16:30: niter=164, f=35.5979, fbest=35.5981\nposition: x[0]=2.46999 x[1]=0.246618 x[2]=0.885418 x[3]=1.425 x[4]=0.720667 x[5]=0.698613 \n\n2020-05-22T12:16:30: niter=165, f=35.6056, fbest=35.5979\nposition: x[0]=2.47041 x[1]=0.246624 x[2]=0.884413 x[3]=1.425 x[4]=0.721068 x[5]=0.698663 \n\n2020-05-22T12:16:30: Iteration 164: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=165, f=35.5962, fbest=35.5979\nposition: x[0]=2.46985 x[1]=0.24662 x[2]=0.885485 x[3]=1.425 x[4]=0.720705 x[5]=0.69872 \n\n2020-05-22T12:16:30: niter=166, f=35.5961, fbest=35.5962\nposition: x[0]=2.46988 x[1]=0.246621 x[2]=0.885299 x[3]=1.425 x[4]=0.720864 x[5]=0.698821 \n\n2020-05-22T12:16:30: niter=167, f=35.6037, fbest=35.5961\nposition: x[0]=2.47029 x[1]=0.246626 x[2]=0.884317 x[3]=1.425 x[4]=0.721261 x[5]=0.698867 \n\n2020-05-22T12:16:30: Iteration 166: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=167, f=35.5944, fbest=35.5961\nposition: x[0]=2.46974 x[1]=0.246622 x[2]=0.885373 x[3]=1.425 x[4]=0.720901 x[5]=0.698928 \n\n2020-05-22T12:16:30: niter=168, f=35.5943, fbest=35.5944\nposition: x[0]=2.46976 x[1]=0.246622 x[2]=0.885189 x[3]=1.425 x[4]=0.721058 x[5]=0.699027 \n\n2020-05-22T12:16:30: niter=169, f=35.602, fbest=35.5943\nposition: x[0]=2.47018 x[1]=0.246626 x[2]=0.884201 x[3]=1.425 x[4]=0.72145 x[5]=0.69907 \n\n2020-05-22T12:16:30: Iteration 168: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=169, f=35.5926, fbest=35.5943\nposition: x[0]=2.46963 x[1]=0.246623 x[2]=0.885261 x[3]=1.425 x[4]=0.721094 x[5]=0.699132 \n\n2020-05-22T12:16:30: niter=170, f=35.5926, fbest=35.5926\nposition: x[0]=2.46965 x[1]=0.246623 x[2]=0.885072 x[3]=1.425 x[4]=0.721248 x[5]=0.69923 \n\n2020-05-22T12:16:30: niter=171, f=35.6052, fbest=35.5926\nposition: x[0]=2.46998 x[1]=0.246614 x[2]=0.883154 x[3]=1.425 x[4]=0.721494 x[5]=0.699278 \n\n2020-05-22T12:16:30: Iteration 170: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=171, f=35.5919, fbest=35.5926\nposition: x[0]=2.4695 x[1]=0.246618 x[2]=0.884843 x[3]=1.425 x[4]=0.721241 x[5]=0.699339 \n\n2020-05-22T12:16:30: niter=172, f=35.5917, fbest=35.5919\nposition: x[0]=2.46951 x[1]=0.24662 x[2]=0.884708 x[3]=1.425 x[4]=0.721397 x[5]=0.699437 \n\n2020-05-22T12:16:30: niter=173, f=35.5996, fbest=35.5917\nposition: x[0]=2.46993 x[1]=0.246627 x[2]=0.883757 x[3]=1.425 x[4]=0.721792 x[5]=0.699475 \n\n2020-05-22T12:16:30: Iteration 172: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=173, f=35.5899, fbest=35.5917\nposition: x[0]=2.46937 x[1]=0.246622 x[2]=0.884794 x[3]=1.425 x[4]=0.721433 x[5]=0.699543 \n\n2020-05-22T12:16:30: niter=174, f=35.5898, fbest=35.5899\nposition: x[0]=2.46939 x[1]=0.246623 x[2]=0.884643 x[3]=1.425 x[4]=0.721588 x[5]=0.699638 \n\n2020-05-22T12:16:30: niter=175, f=35.5847, fbest=35.5898\nposition: x[0]=2.46721 x[1]=0.246602 x[2]=0.884476 x[3]=1.425 x[4]=0.72187 x[5]=0.69985 \n\n2020-05-22T12:16:30: niter=176, f=35.6296, fbest=35.5847\nposition: x[0]=2.46926 x[1]=0.246623 x[2]=0.8811 x[3]=1.425 x[4]=0.72278 x[5]=0.699618 \n\n2020-05-22T12:16:30: Iteration 175: Restarting iteration with increased lambda.\nLambda = 4\n\n2020-05-22T12:16:30: niter=176, f=35.5853, fbest=35.5847\nposition: x[0]=2.46747 x[1]=0.246597 x[2]=0.884264 x[3]=1.425 x[4]=0.72205 x[5]=0.699919 \n\n2020-05-22T12:16:30: Iteration 175: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=176, f=35.584, fbest=35.5847\nposition: x[0]=2.46718 x[1]=0.246601 x[2]=0.884537 x[3]=1.425 x[4]=0.721889 x[5]=0.699905 \n\n2020-05-22T12:16:30: niter=177, f=35.5834, fbest=35.584\nposition: x[0]=2.46723 x[1]=0.246598 x[2]=0.884553 x[3]=1.425 x[4]=0.721956 x[5]=0.699975 \n\n2020-05-22T12:16:30: niter=178, f=35.584, fbest=35.5834\nposition: x[0]=2.4675 x[1]=0.246593 x[2]=0.884322 x[3]=1.425 x[4]=0.722139 x[5]=0.700037 \n\n2020-05-22T12:16:30: Iteration 177: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=178, f=35.5828, fbest=35.5834\nposition: x[0]=2.4672 x[1]=0.246597 x[2]=0.884607 x[3]=1.425 x[4]=0.721976 x[5]=0.700027 \n\n2020-05-22T12:16:30: niter=179, f=35.5822, fbest=35.5828\nposition: x[0]=2.46725 x[1]=0.246594 x[2]=0.88461 x[3]=1.425 x[4]=0.722045 x[5]=0.700093 \n\n2020-05-22T12:16:30: niter=180, f=35.5828, fbest=35.5822\nposition: x[0]=2.46746 x[1]=0.246585 x[2]=0.884356 x[3]=1.425 x[4]=0.722212 x[5]=0.700144 \n\n2020-05-22T12:16:30: Iteration 179: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=180, f=35.5816, fbest=35.5822\nposition: x[0]=2.46721 x[1]=0.246592 x[2]=0.884657 x[3]=1.425 x[4]=0.722061 x[5]=0.700142 \n\n2020-05-22T12:16:30: niter=181, f=35.5811, fbest=35.5816\nposition: x[0]=2.46726 x[1]=0.24659 x[2]=0.884649 x[3]=1.425 x[4]=0.722131 x[5]=0.700205 \n\n2020-05-22T12:16:30: niter=182, f=35.5819, fbest=35.5811\nposition: x[0]=2.46754 x[1]=0.246586 x[2]=0.884385 x[3]=1.425 x[4]=0.722317 x[5]=0.700256 \n\n2020-05-22T12:16:30: Iteration 181: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=182, f=35.5806, fbest=35.5811\nposition: x[0]=2.46724 x[1]=0.246589 x[2]=0.884692 x[3]=1.425 x[4]=0.722153 x[5]=0.700253 \n\n2020-05-22T12:16:30: niter=183, f=35.5802, fbest=35.5806\nposition: x[0]=2.46729 x[1]=0.246587 x[2]=0.884677 x[3]=1.425 x[4]=0.722223 x[5]=0.700313 \n\n2020-05-22T12:16:30: niter=184, f=35.5809, fbest=35.5802\nposition: x[0]=2.46756 x[1]=0.246583 x[2]=0.884401 x[3]=1.425 x[4]=0.722409 x[5]=0.700363 \n\n2020-05-22T12:16:30: Iteration 183: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=184, f=35.5797, fbest=35.5802\nposition: x[0]=2.46727 x[1]=0.246586 x[2]=0.884716 x[3]=1.425 x[4]=0.722246 x[5]=0.70036 \n\n2020-05-22T12:16:30: niter=185, f=35.5792, fbest=35.5797\nposition: x[0]=2.46732 x[1]=0.246584 x[2]=0.884694 x[3]=1.425 x[4]=0.722316 x[5]=0.70042 \n\n2020-05-22T12:16:30: niter=186, f=35.58, fbest=35.5792\nposition: x[0]=2.46758 x[1]=0.246581 x[2]=0.884409 x[3]=1.425 x[4]=0.7225 x[5]=0.700467 \n\n2020-05-22T12:16:30: Iteration 185: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=186, f=35.5788, fbest=35.5792\nposition: x[0]=2.4673 x[1]=0.246584 x[2]=0.88473 x[3]=1.425 x[4]=0.722338 x[5]=0.700466 \n\n2020-05-22T12:16:30: niter=187, f=35.5784, fbest=35.5788\nposition: x[0]=2.46734 x[1]=0.246582 x[2]=0.884703 x[3]=1.425 x[4]=0.722407 x[5]=0.700524 \n\n2020-05-22T12:16:30: niter=188, f=35.5792, fbest=35.5784\nposition: x[0]=2.4676 x[1]=0.24658 x[2]=0.884409 x[3]=1.425 x[4]=0.72259 x[5]=0.70057 \n\n2020-05-22T12:16:30: Iteration 187: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=188, f=35.5779, fbest=35.5784\nposition: x[0]=2.46732 x[1]=0.246582 x[2]=0.884737 x[3]=1.425 x[4]=0.722429 x[5]=0.70057 \n\n2020-05-22T12:16:30: niter=189, f=35.5775, fbest=35.5779\nposition: x[0]=2.46736 x[1]=0.246581 x[2]=0.884705 x[3]=1.425 x[4]=0.722498 x[5]=0.700627 \n\n2020-05-22T12:16:30: niter=190, f=35.5783, fbest=35.5775\nposition: x[0]=2.46761 x[1]=0.246579 x[2]=0.884404 x[3]=1.425 x[4]=0.722679 x[5]=0.700672 \n\n2020-05-22T12:16:30: Iteration 189: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=190, f=35.5771, fbest=35.5775\nposition: x[0]=2.46734 x[1]=0.24658 x[2]=0.884736 x[3]=1.425 x[4]=0.722519 x[5]=0.700673 \n\n2020-05-22T12:16:30: niter=191, f=35.5767, fbest=35.5771\nposition: x[0]=2.46738 x[1]=0.246579 x[2]=0.884701 x[3]=1.425 x[4]=0.722588 x[5]=0.700729 \n\n2020-05-22T12:16:30: niter=192, f=35.5776, fbest=35.5767\nposition: x[0]=2.46764 x[1]=0.246578 x[2]=0.884367 x[3]=1.425 x[4]=0.722767 x[5]=0.700778 \n\n2020-05-22T12:16:30: Iteration 191: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=192, f=35.5763, fbest=35.5767\nposition: x[0]=2.46736 x[1]=0.246579 x[2]=0.884722 x[3]=1.425 x[4]=0.722609 x[5]=0.700776 \n\n2020-05-22T12:16:30: niter=193, f=35.5758, fbest=35.5763\nposition: x[0]=2.46758 x[1]=0.246578 x[2]=0.884655 x[3]=1.425 x[4]=0.722687 x[5]=0.700877 \n\n2020-05-22T12:16:30: niter=194, f=35.5767, fbest=35.5758\nposition: x[0]=2.46779 x[1]=0.246578 x[2]=0.884356 x[3]=1.425 x[4]=0.722864 x[5]=0.700919 \n\n2020-05-22T12:16:30: Iteration 193: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=194, f=35.5754, fbest=35.5758\nposition: x[0]=2.46754 x[1]=0.246578 x[2]=0.884688 x[3]=1.425 x[4]=0.722707 x[5]=0.700922 \n\n2020-05-22T12:16:30: niter=195, f=35.5751, fbest=35.5754\nposition: x[0]=2.46769 x[1]=0.246579 x[2]=0.88468 x[3]=1.425 x[4]=0.722771 x[5]=0.700977 \n\n2020-05-22T12:16:30: niter=196, f=35.5759, fbest=35.5751\nposition: x[0]=2.46788 x[1]=0.246579 x[2]=0.884375 x[3]=1.425 x[4]=0.722946 x[5]=0.701019 \n\n2020-05-22T12:16:30: Iteration 195: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=196, f=35.5746, fbest=35.5751\nposition: x[0]=2.46765 x[1]=0.246579 x[2]=0.884711 x[3]=1.425 x[4]=0.722791 x[5]=0.701022 \n\n2020-05-22T12:16:30: niter=197, f=35.5739, fbest=35.5746\nposition: x[0]=2.46783 x[1]=0.246586 x[2]=0.884802 x[3]=1.425 x[4]=0.722898 x[5]=0.701117 \n\n2020-05-22T12:16:30: niter=198, f=35.577, fbest=35.5739\nposition: x[0]=2.46946 x[1]=0.246601 x[2]=0.884567 x[3]=1.425 x[4]=0.723029 x[5]=0.701198 \n\n2020-05-22T12:16:30: Iteration 197: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=198, f=35.574, fbest=35.5739\nposition: x[0]=2.46821 x[1]=0.246587 x[2]=0.884832 x[3]=1.425 x[4]=0.722912 x[5]=0.701166 \n\n2020-05-22T12:16:30: Iteration 197: Restarting iteration with increased lambda.\nLambda = 64\n\n2020-05-22T12:16:30: niter=198, f=35.5739, fbest=35.5739\nposition: x[0]=2.46792 x[1]=0.246586 x[2]=0.884818 x[3]=1.425 x[4]=0.722899 x[5]=0.701132 \n\n2020-05-22T12:16:30: niter=199, f=35.5734, fbest=35.5739\nposition: x[0]=2.46792 x[1]=0.246578 x[2]=0.884922 x[3]=1.425 x[4]=0.722847 x[5]=0.70117 \n\n2020-05-22T12:16:30: niter=200, f=35.5731, fbest=35.5734\nposition: x[0]=2.46789 x[1]=0.246578 x[2]=0.884931 x[3]=1.425 x[4]=0.722871 x[5]=0.701209 \n\n2020-05-22T12:16:30: niter=201, f=35.5728, fbest=35.5731\nposition: x[0]=2.46787 x[1]=0.246578 x[2]=0.884858 x[3]=1.425 x[4]=0.722942 x[5]=0.701253 \n\n2020-05-22T12:16:30: niter=202, f=35.5737, fbest=35.5728\nposition: x[0]=2.46807 x[1]=0.246578 x[2]=0.884491 x[3]=1.425 x[4]=0.723122 x[5]=0.70128 \n\n2020-05-22T12:16:30: Iteration 201: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=202, f=35.5725, fbest=35.5728\nposition: x[0]=2.46784 x[1]=0.246579 x[2]=0.884868 x[3]=1.425 x[4]=0.722964 x[5]=0.701293 \n\n2020-05-22T12:16:30: niter=203, f=35.5722, fbest=35.5725\nposition: x[0]=2.46808 x[1]=0.24658 x[2]=0.884767 x[3]=1.425 x[4]=0.723048 x[5]=0.701391 \n\n2020-05-22T12:16:30: niter=204, f=35.5731, fbest=35.5722\nposition: x[0]=2.46824 x[1]=0.246582 x[2]=0.884418 x[3]=1.425 x[4]=0.723223 x[5]=0.701421 \n\n2020-05-22T12:16:30: Iteration 203: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=204, f=35.5718, fbest=35.5722\nposition: x[0]=2.46803 x[1]=0.246581 x[2]=0.884784 x[3]=1.425 x[4]=0.723068 x[5]=0.701432 \n\n2020-05-22T12:16:30: niter=205, f=35.5723, fbest=35.5718\nposition: x[0]=2.46861 x[1]=0.246665 x[2]=0.884773 x[3]=1.425 x[4]=0.723379 x[5]=0.701515 \n\n2020-05-22T12:16:30: Iteration 204: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:30: niter=205, f=35.5716, fbest=35.5718\nposition: x[0]=2.46816 x[1]=0.246603 x[2]=0.884808 x[3]=1.425 x[4]=0.723142 x[5]=0.701459 \n\n2020-05-22T12:16:30: niter=206, f=35.5712, fbest=35.5716\nposition: x[0]=2.46812 x[1]=0.246602 x[2]=0.88482 x[3]=1.425 x[4]=0.723167 x[5]=0.701503 \n\n2020-05-22T12:16:30: niter=207, f=35.5709, fbest=35.5712\nposition: x[0]=2.46811 x[1]=0.246601 x[2]=0.884749 x[3]=1.425 x[4]=0.723228 x[5]=0.701555 \n\n2020-05-22T12:16:30: niter=208, f=35.5736, fbest=35.5709\nposition: x[0]=2.46762 x[1]=0.246557 x[2]=0.883571 x[3]=1.425 x[4]=0.723004 x[5]=0.701544 \n\n2020-05-22T12:16:30: Iteration 207: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=208, f=35.5709, fbest=35.5709\nposition: x[0]=2.46789 x[1]=0.246585 x[2]=0.884467 x[3]=1.425 x[4]=0.723131 x[5]=0.701599 \n\n2020-05-22T12:16:30: niter=209, f=35.5707, fbest=35.5709\nposition: x[0]=2.46783 x[1]=0.246582 x[2]=0.884417 x[3]=1.425 x[4]=0.723183 x[5]=0.701639 \n\n2020-05-22T12:16:30: niter=210, f=35.5716, fbest=35.5707\nposition: x[0]=2.46803 x[1]=0.246584 x[2]=0.884086 x[3]=1.425 x[4]=0.723349 x[5]=0.701654 \n\n2020-05-22T12:16:30: Iteration 209: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=210, f=35.5703, fbest=35.5707\nposition: x[0]=2.46779 x[1]=0.246583 x[2]=0.884439 x[3]=1.425 x[4]=0.723202 x[5]=0.701676 \n\n2020-05-22T12:16:30: niter=211, f=35.57, fbest=35.5703\nposition: x[0]=2.46781 x[1]=0.246584 x[2]=0.884388 x[3]=1.425 x[4]=0.723274 x[5]=0.701718 \n\n2020-05-22T12:16:30: niter=212, f=35.571, fbest=35.57\nposition: x[0]=2.468 x[1]=0.246585 x[2]=0.884058 x[3]=1.425 x[4]=0.723458 x[5]=0.701738 \n\n2020-05-22T12:16:30: Iteration 211: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=212, f=35.5697, fbest=35.57\nposition: x[0]=2.46777 x[1]=0.246585 x[2]=0.88441 x[3]=1.425 x[4]=0.723298 x[5]=0.701756 \n\n2020-05-22T12:16:30: niter=213, f=35.5694, fbest=35.5697\nposition: x[0]=2.46778 x[1]=0.246589 x[2]=0.884358 x[3]=1.425 x[4]=0.723367 x[5]=0.7018 \n\n2020-05-22T12:16:30: niter=214, f=35.5704, fbest=35.5694\nposition: x[0]=2.46797 x[1]=0.246589 x[2]=0.884025 x[3]=1.425 x[4]=0.723548 x[5]=0.701822 \n\n2020-05-22T12:16:30: Iteration 213: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=214, f=35.5691, fbest=35.5694\nposition: x[0]=2.46774 x[1]=0.246589 x[2]=0.884378 x[3]=1.425 x[4]=0.723389 x[5]=0.701839 \n\n2020-05-22T12:16:30: niter=215, f=35.5688, fbest=35.5691\nposition: x[0]=2.46775 x[1]=0.246589 x[2]=0.884326 x[3]=1.425 x[4]=0.723457 x[5]=0.701883 \n\n2020-05-22T12:16:30: niter=216, f=35.5698, fbest=35.5688\nposition: x[0]=2.46794 x[1]=0.246589 x[2]=0.88399 x[3]=1.425 x[4]=0.723635 x[5]=0.701906 \n\n2020-05-22T12:16:30: Iteration 215: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=216, f=35.5684, fbest=35.5688\nposition: x[0]=2.46771 x[1]=0.24659 x[2]=0.884346 x[3]=1.425 x[4]=0.723478 x[5]=0.701923 \n\n2020-05-22T12:16:30: niter=217, f=35.5682, fbest=35.5684\nposition: x[0]=2.46772 x[1]=0.24659 x[2]=0.884292 x[3]=1.425 x[4]=0.723545 x[5]=0.701968 \n\n2020-05-22T12:16:30: niter=218, f=35.5692, fbest=35.5682\nposition: x[0]=2.4679 x[1]=0.24659 x[2]=0.883955 x[3]=1.425 x[4]=0.72372 x[5]=0.701992 \n\n2020-05-22T12:16:30: Iteration 217: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=218, f=35.5678, fbest=35.5682\nposition: x[0]=2.46768 x[1]=0.24659 x[2]=0.884312 x[3]=1.425 x[4]=0.723565 x[5]=0.702007 \n\n2020-05-22T12:16:30: niter=219, f=35.5676, fbest=35.5678\nposition: x[0]=2.46768 x[1]=0.24659 x[2]=0.884257 x[3]=1.425 x[4]=0.72363 x[5]=0.702053 \n\n2020-05-22T12:16:30: niter=220, f=35.5686, fbest=35.5676\nposition: x[0]=2.46787 x[1]=0.24659 x[2]=0.883923 x[3]=1.425 x[4]=0.723804 x[5]=0.702077 \n\n2020-05-22T12:16:30: Iteration 219: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=220, f=35.5672, fbest=35.5676\nposition: x[0]=2.46764 x[1]=0.24659 x[2]=0.884278 x[3]=1.425 x[4]=0.72365 x[5]=0.702093 \n\n2020-05-22T12:16:30: niter=221, f=35.567, fbest=35.5672\nposition: x[0]=2.46629 x[1]=0.246581 x[2]=0.884694 x[3]=1.425 x[4]=0.723677 x[5]=0.701883 \n\n2020-05-22T12:16:30: niter=222, f=35.5678, fbest=35.567\nposition: x[0]=2.46667 x[1]=0.246572 x[2]=0.884238 x[3]=1.425 x[4]=0.723864 x[5]=0.701891 \n\n2020-05-22T12:16:30: Iteration 221: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=222, f=35.5668, fbest=35.567\nposition: x[0]=2.46632 x[1]=0.246578 x[2]=0.88467 x[3]=1.425 x[4]=0.723705 x[5]=0.701913 \n\n2020-05-22T12:16:30: niter=223, f=35.5666, fbest=35.5668\nposition: x[0]=2.46643 x[1]=0.246574 x[2]=0.88455 x[3]=1.425 x[4]=0.723778 x[5]=0.701949 \n\n2020-05-22T12:16:30: niter=224, f=35.568, fbest=35.5666\nposition: x[0]=2.46623 x[1]=0.246564 x[2]=0.883914 x[3]=1.425 x[4]=0.723907 x[5]=0.701888 \n\n2020-05-22T12:16:30: Iteration 223: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=224, f=35.5666, fbest=35.5666\nposition: x[0]=2.46632 x[1]=0.246572 x[2]=0.884455 x[3]=1.425 x[4]=0.723796 x[5]=0.701954 \n\n2020-05-22T12:16:30: Iteration 223: Restarting iteration with increased lambda.\nLambda = 64\n\n2020-05-22T12:16:30: niter=224, f=35.5666, fbest=35.5666\nposition: x[0]=2.46639 x[1]=0.246573 x[2]=0.884533 x[3]=1.425 x[4]=0.72378 x[5]=0.701953 \n\n2020-05-22T12:16:30: niter=225, f=35.5665, fbest=35.5666\nposition: x[0]=2.46641 x[1]=0.246573 x[2]=0.884549 x[3]=1.425 x[4]=0.723789 x[5]=0.701974 \n\n2020-05-22T12:16:30: niter=226, f=35.5663, fbest=35.5665\nposition: x[0]=2.46643 x[1]=0.246571 x[2]=0.884635 x[3]=1.425 x[4]=0.723726 x[5]=0.702003 \n\n2020-05-22T12:16:30: niter=227, f=35.5661, fbest=35.5663\nposition: x[0]=2.46654 x[1]=0.246573 x[2]=0.884517 x[3]=1.425 x[4]=0.723827 x[5]=0.702037 \n\n2020-05-22T12:16:30: niter=228, f=35.5661, fbest=35.5661\nposition: x[0]=2.46691 x[1]=0.246589 x[2]=0.886757 x[3]=1.425 x[4]=0.724079 x[5]=0.702553 \n\n2020-05-22T12:16:30: niter=229, f=35.5666, fbest=35.5661\nposition: x[0]=2.468 x[1]=0.246566 x[2]=0.884709 x[3]=1.425 x[4]=0.724523 x[5]=0.702356 \n\n2020-05-22T12:16:30: Iteration 228: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=229, f=35.5644, fbest=35.5661\nposition: x[0]=2.46714 x[1]=0.246577 x[2]=0.886379 x[3]=1.425 x[4]=0.724181 x[5]=0.702531 \n\n2020-05-22T12:16:30: niter=230, f=35.5635, fbest=35.5644\nposition: x[0]=2.46771 x[1]=0.246574 x[2]=0.885615 x[3]=1.425 x[4]=0.724416 x[5]=0.702504 \n\n2020-05-22T12:16:30: niter=231, f=35.5709, fbest=35.5635\nposition: x[0]=2.46879 x[1]=0.246576 x[2]=0.884006 x[3]=1.425 x[4]=0.724722 x[5]=0.70246 \n\n2020-05-22T12:16:30: Iteration 230: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=231, f=35.5633, fbest=35.5635\nposition: x[0]=2.46784 x[1]=0.246571 x[2]=0.885431 x[3]=1.425 x[4]=0.724453 x[5]=0.702557 \n\n2020-05-22T12:16:30: niter=232, f=35.5639, fbest=35.5633\nposition: x[0]=2.46801 x[1]=0.246596 x[2]=0.884874 x[3]=1.425 x[4]=0.724574 x[5]=0.702597 \n\n2020-05-22T12:16:30: Iteration 231: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=232, f=35.563, fbest=35.5633\nposition: x[0]=2.4678 x[1]=0.246579 x[2]=0.885387 x[3]=1.425 x[4]=0.72446 x[5]=0.7026 \n\n2020-05-22T12:16:30: niter=233, f=35.5629, fbest=35.563\nposition: x[0]=2.46773 x[1]=0.246582 x[2]=0.884749 x[3]=1.425 x[4]=0.724495 x[5]=0.702662 \n\n2020-05-22T12:16:30: niter=234, f=35.5637, fbest=35.5629\nposition: x[0]=2.46784 x[1]=0.24658 x[2]=0.884302 x[3]=1.425 x[4]=0.724617 x[5]=0.702709 \n\n2020-05-22T12:16:30: Iteration 233: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=234, f=35.5625, fbest=35.5629\nposition: x[0]=2.46767 x[1]=0.246582 x[2]=0.884739 x[3]=1.425 x[4]=0.7245 x[5]=0.702709 \n\n2020-05-22T12:16:30: niter=235, f=35.5621, fbest=35.5625\nposition: x[0]=2.46763 x[1]=0.246581 x[2]=0.884626 x[3]=1.425 x[4]=0.724538 x[5]=0.702766 \n\n2020-05-22T12:16:30: niter=236, f=35.563, fbest=35.5621\nposition: x[0]=2.46776 x[1]=0.246579 x[2]=0.884184 x[3]=1.425 x[4]=0.724668 x[5]=0.702806 \n\n2020-05-22T12:16:30: Iteration 235: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=236, f=35.5617, fbest=35.5621\nposition: x[0]=2.46758 x[1]=0.246581 x[2]=0.884616 x[3]=1.425 x[4]=0.724546 x[5]=0.70281 \n\n2020-05-22T12:16:30: niter=237, f=35.5615, fbest=35.5617\nposition: x[0]=2.46755 x[1]=0.24658 x[2]=0.884506 x[3]=1.425 x[4]=0.724588 x[5]=0.702864 \n\n2020-05-22T12:16:30: niter=238, f=35.5624, fbest=35.5615\nposition: x[0]=2.46768 x[1]=0.246579 x[2]=0.884071 x[3]=1.425 x[4]=0.724724 x[5]=0.702898 \n\n2020-05-22T12:16:30: Iteration 237: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=238, f=35.5611, fbest=35.5615\nposition: x[0]=2.4675 x[1]=0.24658 x[2]=0.884497 x[3]=1.425 x[4]=0.724598 x[5]=0.702907 \n\n2020-05-22T12:16:30: niter=239, f=35.5609, fbest=35.5611\nposition: x[0]=2.46748 x[1]=0.246579 x[2]=0.88439 x[3]=1.425 x[4]=0.724637 x[5]=0.702957 \n\n2020-05-22T12:16:30: niter=240, f=35.5618, fbest=35.5609\nposition: x[0]=2.46762 x[1]=0.246578 x[2]=0.883963 x[3]=1.425 x[4]=0.724777 x[5]=0.702986 \n\n2020-05-22T12:16:30: Iteration 239: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=240, f=35.5605, fbest=35.5609\nposition: x[0]=2.46743 x[1]=0.246579 x[2]=0.884383 x[3]=1.425 x[4]=0.724648 x[5]=0.702998 \n\n2020-05-22T12:16:30: niter=241, f=35.5603, fbest=35.5605\nposition: x[0]=2.46741 x[1]=0.246579 x[2]=0.884275 x[3]=1.425 x[4]=0.724696 x[5]=0.703046 \n\n2020-05-22T12:16:30: niter=242, f=35.5613, fbest=35.5603\nposition: x[0]=2.46756 x[1]=0.246578 x[2]=0.883856 x[3]=1.425 x[4]=0.724839 x[5]=0.703073 \n\n2020-05-22T12:16:30: Iteration 241: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=242, f=35.56, fbest=35.5603\nposition: x[0]=2.46736 x[1]=0.246579 x[2]=0.884271 x[3]=1.425 x[4]=0.724708 x[5]=0.703087 \n\n2020-05-22T12:16:30: niter=243, f=35.5597, fbest=35.56\nposition: x[0]=2.46735 x[1]=0.24658 x[2]=0.884323 x[3]=1.425 x[4]=0.72476 x[5]=0.703127 \n\n2020-05-22T12:16:30: niter=244, f=35.5607, fbest=35.5597\nposition: x[0]=2.46752 x[1]=0.246579 x[2]=0.88388 x[3]=1.425 x[4]=0.724905 x[5]=0.703149 \n\n2020-05-22T12:16:30: Iteration 243: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=244, f=35.5594, fbest=35.5597\nposition: x[0]=2.46731 x[1]=0.24658 x[2]=0.884311 x[3]=1.425 x[4]=0.724773 x[5]=0.703166 \n\n2020-05-22T12:16:30: niter=245, f=35.5592, fbest=35.5594\nposition: x[0]=2.46731 x[1]=0.246579 x[2]=0.884201 x[3]=1.425 x[4]=0.724823 x[5]=0.703209 \n\n2020-05-22T12:16:30: niter=246, f=35.5602, fbest=35.5592\nposition: x[0]=2.46745 x[1]=0.246578 x[2]=0.883794 x[3]=1.425 x[4]=0.724969 x[5]=0.703228 \n\n2020-05-22T12:16:30: Iteration 245: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=246, f=35.5589, fbest=35.5592\nposition: x[0]=2.46726 x[1]=0.246579 x[2]=0.884199 x[3]=1.425 x[4]=0.724837 x[5]=0.703247 \n\n2020-05-22T12:16:30: niter=247, f=35.5587, fbest=35.5589\nposition: x[0]=2.46725 x[1]=0.246579 x[2]=0.88409 x[3]=1.425 x[4]=0.724887 x[5]=0.703291 \n\n2020-05-22T12:16:30: niter=248, f=35.5598, fbest=35.5587\nposition: x[0]=2.46741 x[1]=0.246579 x[2]=0.883673 x[3]=1.425 x[4]=0.725033 x[5]=0.703312 \n\n2020-05-22T12:16:30: Iteration 247: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=248, f=35.5584, fbest=35.5587\nposition: x[0]=2.46721 x[1]=0.246579 x[2]=0.884086 x[3]=1.425 x[4]=0.7249 x[5]=0.70333 \n\n2020-05-22T12:16:30: niter=249, f=35.5591, fbest=35.5584\nposition: x[0]=2.46727 x[1]=0.24656 x[2]=0.883561 x[3]=1.425 x[4]=0.724839 x[5]=0.703375 \n\n2020-05-22T12:16:30: Iteration 248: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:30: niter=249, f=35.5584, fbest=35.5584\nposition: x[0]=2.46719 x[1]=0.246574 x[2]=0.88398 x[3]=1.425 x[4]=0.724875 x[5]=0.703353 \n\n2020-05-22T12:16:30: niter=250, f=35.5577, fbest=35.5584\nposition: x[0]=2.46644 x[1]=0.246574 x[2]=0.883954 x[3]=1.425 x[4]=0.724835 x[5]=0.70336 \n\n2020-05-22T12:16:30: niter=251, f=35.5577, fbest=35.5577\nposition: x[0]=2.46651 x[1]=0.246572 x[2]=0.883843 x[3]=1.425 x[4]=0.724906 x[5]=0.703384 \n\n2020-05-22T12:16:30: niter=252, f=35.5601, fbest=35.5577\nposition: x[0]=2.4683 x[1]=0.246704 x[2]=0.886519 x[3]=1.425 x[4]=0.725326 x[5]=0.703845 \n\n2020-05-22T12:16:30: Iteration 251: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=252, f=35.5567, fbest=35.5577\nposition: x[0]=2.46703 x[1]=0.246585 x[2]=0.884799 x[3]=1.425 x[4]=0.724954 x[5]=0.703597 \n\n2020-05-22T12:16:30: niter=253, f=35.5565, fbest=35.5567\nposition: x[0]=2.46713 x[1]=0.246581 x[2]=0.884589 x[3]=1.425 x[4]=0.725032 x[5]=0.703603 \n\n2020-05-22T12:16:30: niter=254, f=35.5574, fbest=35.5565\nposition: x[0]=2.46738 x[1]=0.246585 x[2]=0.883868 x[3]=1.425 x[4]=0.725201 x[5]=0.703589 \n\n2020-05-22T12:16:30: Iteration 253: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=254, f=35.5563, fbest=35.5565\nposition: x[0]=2.46713 x[1]=0.246582 x[2]=0.884486 x[3]=1.425 x[4]=0.725057 x[5]=0.703625 \n\n2020-05-22T12:16:30: niter=255, f=35.5563, fbest=35.5563\nposition: x[0]=2.46718 x[1]=0.24658 x[2]=0.884319 x[3]=1.425 x[4]=0.725122 x[5]=0.703647 \n\n2020-05-22T12:16:30: niter=256, f=35.5569, fbest=35.5563\nposition: x[0]=2.46763 x[1]=0.246585 x[2]=0.884338 x[3]=1.425 x[4]=0.725353 x[5]=0.703654 \n\n2020-05-22T12:16:30: Iteration 255: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=256, f=35.556, fbest=35.5563\nposition: x[0]=2.46721 x[1]=0.246582 x[2]=0.884437 x[3]=1.425 x[4]=0.725158 x[5]=0.70368 \n\n2020-05-22T12:16:30: niter=257, f=35.556, fbest=35.556\nposition: x[0]=2.46724 x[1]=0.24658 x[2]=0.88428 x[3]=1.425 x[4]=0.725217 x[5]=0.703708 \n\n2020-05-22T12:16:30: niter=258, f=35.557, fbest=35.556\nposition: x[0]=2.46743 x[1]=0.246578 x[2]=0.883761 x[3]=1.425 x[4]=0.725367 x[5]=0.703712 \n\n2020-05-22T12:16:30: Iteration 257: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=258, f=35.5558, fbest=35.556\nposition: x[0]=2.46721 x[1]=0.24658 x[2]=0.884242 x[3]=1.425 x[4]=0.725233 x[5]=0.703739 \n\n2020-05-22T12:16:30: niter=259, f=35.5557, fbest=35.5558\nposition: x[0]=2.46722 x[1]=0.246579 x[2]=0.884066 x[3]=1.425 x[4]=0.725286 x[5]=0.703774 \n\n2020-05-22T12:16:30: niter=260, f=35.5564, fbest=35.5557\nposition: x[0]=2.46759 x[1]=0.246594 x[2]=0.883829 x[3]=1.425 x[4]=0.725541 x[5]=0.703851 \n\n2020-05-22T12:16:30: Iteration 259: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=260, f=35.5553, fbest=35.5557\nposition: x[0]=2.46721 x[1]=0.246582 x[2]=0.884133 x[3]=1.425 x[4]=0.72532 x[5]=0.703835 \n\n2020-05-22T12:16:30: niter=261, f=35.5555, fbest=35.5553\nposition: x[0]=2.46699 x[1]=0.246569 x[2]=0.885246 x[3]=1.425 x[4]=0.725382 x[5]=0.703781 \n\n2020-05-22T12:16:30: Iteration 260: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:30: niter=261, f=35.555, fbest=35.5553\nposition: x[0]=2.46712 x[1]=0.246578 x[2]=0.884452 x[3]=1.425 x[4]=0.725325 x[5]=0.703836 \n\n2020-05-22T12:16:30: niter=262, f=35.555, fbest=35.555\nposition: x[0]=2.46717 x[1]=0.246578 x[2]=0.884199 x[3]=1.425 x[4]=0.725342 x[5]=0.703869 \n\n2020-05-22T12:16:30: niter=263, f=35.5549, fbest=35.555\nposition: x[0]=2.46718 x[1]=0.246577 x[2]=0.88406 x[3]=1.425 x[4]=0.725396 x[5]=0.703901 \n\n2020-05-22T12:16:30: niter=264, f=35.5559, fbest=35.5549\nposition: x[0]=2.46734 x[1]=0.246576 x[2]=0.883584 x[3]=1.425 x[4]=0.725542 x[5]=0.703907 \n\n2020-05-22T12:16:30: Iteration 263: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=264, f=35.5547, fbest=35.5549\nposition: x[0]=2.46714 x[1]=0.246577 x[2]=0.884036 x[3]=1.425 x[4]=0.72541 x[5]=0.703934 \n\n2020-05-22T12:16:30: niter=265, f=35.5545, fbest=35.5547\nposition: x[0]=2.46715 x[1]=0.246579 x[2]=0.883982 x[3]=1.425 x[4]=0.725463 x[5]=0.703967 \n\n2020-05-22T12:16:30: niter=266, f=35.5554, fbest=35.5545\nposition: x[0]=2.4673 x[1]=0.246578 x[2]=0.883523 x[3]=1.425 x[4]=0.725608 x[5]=0.703973 \n\n2020-05-22T12:16:30: Iteration 265: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=266, f=35.5543, fbest=35.5545\nposition: x[0]=2.4671 x[1]=0.246579 x[2]=0.883964 x[3]=1.425 x[4]=0.725477 x[5]=0.704 \n\n2020-05-22T12:16:30: niter=267, f=35.5542, fbest=35.5543\nposition: x[0]=2.4671 x[1]=0.246579 x[2]=0.883843 x[3]=1.425 x[4]=0.725527 x[5]=0.704036 \n\n2020-05-22T12:16:30: niter=268, f=35.5551, fbest=35.5542\nposition: x[0]=2.46727 x[1]=0.246593 x[2]=0.883396 x[3]=1.425 x[4]=0.72567 x[5]=0.704045 \n\n2020-05-22T12:16:30: Iteration 267: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=268, f=35.5539, fbest=35.5542\nposition: x[0]=2.46706 x[1]=0.246583 x[2]=0.883829 x[3]=1.425 x[4]=0.72554 x[5]=0.70407 \n\n2020-05-22T12:16:30: niter=269, f=35.5538, fbest=35.5539\nposition: x[0]=2.46705 x[1]=0.246583 x[2]=0.883717 x[3]=1.425 x[4]=0.72559 x[5]=0.704108 \n\n2020-05-22T12:16:30: niter=270, f=35.5548, fbest=35.5538\nposition: x[0]=2.4672 x[1]=0.246582 x[2]=0.883288 x[3]=1.425 x[4]=0.725732 x[5]=0.704117 \n\n2020-05-22T12:16:30: Iteration 269: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=270, f=35.5535, fbest=35.5538\nposition: x[0]=2.467 x[1]=0.246583 x[2]=0.883708 x[3]=1.425 x[4]=0.725602 x[5]=0.704143 \n\n2020-05-22T12:16:30: niter=271, f=35.5534, fbest=35.5535\nposition: x[0]=2.46693 x[1]=0.246583 x[2]=0.883337 x[3]=1.425 x[4]=0.725635 x[5]=0.704205 \n\n2020-05-22T12:16:30: niter=272, f=35.5543, fbest=35.5534\nposition: x[0]=2.46729 x[1]=0.246585 x[2]=0.883308 x[3]=1.425 x[4]=0.72584 x[5]=0.704218 \n\n2020-05-22T12:16:30: Iteration 271: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=272, f=35.553, fbest=35.5534\nposition: x[0]=2.46693 x[1]=0.246584 x[2]=0.883438 x[3]=1.425 x[4]=0.725665 x[5]=0.70424 \n\n2020-05-22T12:16:30: niter=273, f=35.5529, fbest=35.553\nposition: x[0]=2.46692 x[1]=0.246602 x[2]=0.88335 x[3]=1.425 x[4]=0.725766 x[5]=0.704285 \n\n2020-05-22T12:16:30: niter=274, f=35.554, fbest=35.5529\nposition: x[0]=2.46707 x[1]=0.246599 x[2]=0.882948 x[3]=1.425 x[4]=0.725901 x[5]=0.704304 \n\n2020-05-22T12:16:30: Iteration 273: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=274, f=35.5526, fbest=35.5529\nposition: x[0]=2.46687 x[1]=0.246602 x[2]=0.883351 x[3]=1.425 x[4]=0.725776 x[5]=0.704324 \n\n2020-05-22T12:16:30: niter=275, f=35.5524, fbest=35.5526\nposition: x[0]=2.46685 x[1]=0.246599 x[2]=0.883262 x[3]=1.425 x[4]=0.725819 x[5]=0.704367 \n\n2020-05-22T12:16:30: niter=276, f=35.5514, fbest=35.5524\nposition: x[0]=2.46491 x[1]=0.246531 x[2]=0.883125 x[3]=1.425 x[4]=0.726099 x[5]=0.704315 \n\n2020-05-22T12:16:30: niter=277, f=35.5593, fbest=35.5514\nposition: x[0]=2.46577 x[1]=0.246538 x[2]=0.881789 x[3]=1.425 x[4]=0.726451 x[5]=0.704213 \n\n2020-05-22T12:16:30: Iteration 276: Restarting iteration with increased lambda.\nLambda = 8\n\n2020-05-22T12:16:30: niter=277, f=35.5511, fbest=35.5514\nposition: x[0]=2.46496 x[1]=0.246532 x[2]=0.88304 x[3]=1.425 x[4]=0.726145 x[5]=0.704357 \n\n2020-05-22T12:16:30: niter=278, f=35.5532, fbest=35.5511\nposition: x[0]=2.46527 x[1]=0.246496 x[2]=0.882513 x[3]=1.425 x[4]=0.725936 x[5]=0.704266 \n\n2020-05-22T12:16:30: Iteration 277: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=278, f=35.5512, fbest=35.5511\nposition: x[0]=2.46497 x[1]=0.246521 x[2]=0.882977 x[3]=1.425 x[4]=0.72607 x[5]=0.704366 \n\n2020-05-22T12:16:30: Iteration 277: Restarting iteration with increased lambda.\nLambda = 64\n\n2020-05-22T12:16:30: niter=278, f=35.5511, fbest=35.5511\nposition: x[0]=2.46496 x[1]=0.246529 x[2]=0.883031 x[3]=1.425 x[4]=0.726124 x[5]=0.704363 \n\n2020-05-22T12:16:30: niter=279, f=35.5509, fbest=35.5511\nposition: x[0]=2.46492 x[1]=0.246529 x[2]=0.883039 x[3]=1.425 x[4]=0.726126 x[5]=0.704378 \n\n2020-05-22T12:16:30: niter=280, f=35.5507, fbest=35.5509\nposition: x[0]=2.46487 x[1]=0.24653 x[2]=0.883031 x[3]=1.425 x[4]=0.72614 x[5]=0.704414 \n\n2020-05-22T12:16:30: niter=281, f=35.5507, fbest=35.5507\nposition: x[0]=2.4649 x[1]=0.246523 x[2]=0.882805 x[3]=1.425 x[4]=0.72615 x[5]=0.704467 \n\n2020-05-22T12:16:30: Iteration 280: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:30: niter=281, f=35.5505, fbest=35.5507\nposition: x[0]=2.46485 x[1]=0.246528 x[2]=0.883008 x[3]=1.425 x[4]=0.726132 x[5]=0.704441 \n\n2020-05-22T12:16:30: niter=282, f=35.5505, fbest=35.5505\nposition: x[0]=2.46447 x[1]=0.24653 x[2]=0.882743 x[3]=1.425 x[4]=0.726059 x[5]=0.704467 \n\n2020-05-22T12:16:30: niter=283, f=35.5504, fbest=35.5505\nposition: x[0]=2.46459 x[1]=0.24653 x[2]=0.882769 x[3]=1.425 x[4]=0.726126 x[5]=0.704491 \n\n2020-05-22T12:16:30: niter=284, f=35.5518, fbest=35.5504\nposition: x[0]=2.46473 x[1]=0.246531 x[2]=0.882195 x[3]=1.425 x[4]=0.726292 x[5]=0.704489 \n\n2020-05-22T12:16:30: Iteration 283: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=284, f=35.5502, fbest=35.5504\nposition: x[0]=2.46454 x[1]=0.246531 x[2]=0.882717 x[3]=1.425 x[4]=0.726146 x[5]=0.704521 \n\n2020-05-22T12:16:30: niter=285, f=35.5503, fbest=35.5502\nposition: x[0]=2.46404 x[1]=0.246531 x[2]=0.882608 x[3]=1.425 x[4]=0.726054 x[5]=0.704524 \n\n2020-05-22T12:16:30: Iteration 284: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:30: niter=285, f=35.5501, fbest=35.5502\nposition: x[0]=2.46437 x[1]=0.246531 x[2]=0.882728 x[3]=1.425 x[4]=0.726112 x[5]=0.704539 \n\n2020-05-22T12:16:30: niter=286, f=35.5499, fbest=35.5501\nposition: x[0]=2.4644 x[1]=0.246531 x[2]=0.882722 x[3]=1.425 x[4]=0.726137 x[5]=0.704563 \n\n2020-05-22T12:16:30: niter=287, f=35.5499, fbest=35.5499\nposition: x[0]=2.46451 x[1]=0.246531 x[2]=0.882632 x[3]=1.425 x[4]=0.726204 x[5]=0.704588 \n\n2020-05-22T12:16:30: niter=288, f=35.5511, fbest=35.5499\nposition: x[0]=2.46485 x[1]=0.246532 x[2]=0.882259 x[3]=1.425 x[4]=0.726368 x[5]=0.704584 \n\n2020-05-22T12:16:30: Iteration 287: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=288, f=35.5497, fbest=35.5499\nposition: x[0]=2.46452 x[1]=0.246532 x[2]=0.882637 x[3]=1.425 x[4]=0.726224 x[5]=0.704618 \n\n2020-05-22T12:16:30: niter=289, f=35.5497, fbest=35.5497\nposition: x[0]=2.46461 x[1]=0.246532 x[2]=0.882561 x[3]=1.425 x[4]=0.726284 x[5]=0.704649 \n\n2020-05-22T12:16:30: niter=290, f=35.5509, fbest=35.5497\nposition: x[0]=2.46492 x[1]=0.246535 x[2]=0.882201 x[3]=1.425 x[4]=0.72644 x[5]=0.704653 \n\n2020-05-22T12:16:30: Iteration 289: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=290, f=35.5495, fbest=35.5497\nposition: x[0]=2.46461 x[1]=0.246533 x[2]=0.882571 x[3]=1.425 x[4]=0.726301 x[5]=0.704682 \n\n2020-05-22T12:16:30: niter=291, f=35.5494, fbest=35.5495\nposition: x[0]=2.46468 x[1]=0.246534 x[2]=0.882503 x[3]=1.425 x[4]=0.726357 x[5]=0.704717 \n\n2020-05-22T12:16:30: niter=292, f=35.5506, fbest=35.5494\nposition: x[0]=2.46497 x[1]=0.246536 x[2]=0.882152 x[3]=1.425 x[4]=0.726507 x[5]=0.704725 \n\n2020-05-22T12:16:30: Iteration 291: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=292, f=35.5491, fbest=35.5494\nposition: x[0]=2.46467 x[1]=0.246535 x[2]=0.882517 x[3]=1.425 x[4]=0.726372 x[5]=0.704752 \n\n2020-05-22T12:16:30: niter=293, f=35.5491, fbest=35.5491\nposition: x[0]=2.46473 x[1]=0.246536 x[2]=0.882454 x[3]=1.425 x[4]=0.726425 x[5]=0.704789 \n\n2020-05-22T12:16:30: niter=294, f=35.5506, fbest=35.5491\nposition: x[0]=2.46526 x[1]=0.24654 x[2]=0.882123 x[3]=1.425 x[4]=0.726564 x[5]=0.704807 \n\n2020-05-22T12:16:30: Iteration 293: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=294, f=35.5488, fbest=35.5491\nposition: x[0]=2.46479 x[1]=0.246537 x[2]=0.882472 x[3]=1.425 x[4]=0.726438 x[5]=0.704826 \n\n2020-05-22T12:16:30: niter=295, f=35.5488, fbest=35.5488\nposition: x[0]=2.46484 x[1]=0.246538 x[2]=0.882414 x[3]=1.425 x[4]=0.726488 x[5]=0.704866 \n\n2020-05-22T12:16:30: niter=296, f=35.55, fbest=35.5488\nposition: x[0]=2.4651 x[1]=0.246541 x[2]=0.882072 x[3]=1.425 x[4]=0.726631 x[5]=0.704878 \n\n2020-05-22T12:16:30: Iteration 295: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=296, f=35.5485, fbest=35.5488\nposition: x[0]=2.46482 x[1]=0.246539 x[2]=0.882432 x[3]=1.425 x[4]=0.7265 x[5]=0.704902 \n\n2020-05-22T12:16:30: niter=297, f=35.5484, fbest=35.5485\nposition: x[0]=2.46486 x[1]=0.246541 x[2]=0.882374 x[3]=1.425 x[4]=0.726549 x[5]=0.704942 \n\n2020-05-22T12:16:30: niter=298, f=35.5496, fbest=35.5484\nposition: x[0]=2.46512 x[1]=0.246543 x[2]=0.882033 x[3]=1.425 x[4]=0.726692 x[5]=0.704954 \n\n2020-05-22T12:16:30: Iteration 297: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=298, f=35.5481, fbest=35.5484\nposition: x[0]=2.46484 x[1]=0.246542 x[2]=0.882393 x[3]=1.425 x[4]=0.726561 x[5]=0.704979 \n\n2020-05-22T12:16:30: niter=299, f=35.548, fbest=35.5481\nposition: x[0]=2.46502 x[1]=0.246551 x[2]=0.882339 x[3]=1.425 x[4]=0.726608 x[5]=0.705021 \n\n2020-05-22T12:16:30: niter=300, f=35.5493, fbest=35.548\nposition: x[0]=2.46526 x[1]=0.246552 x[2]=0.881999 x[3]=1.425 x[4]=0.726746 x[5]=0.705035 \n\n2020-05-22T12:16:30: Iteration 299: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=300, f=35.5477, fbest=35.548\nposition: x[0]=2.46499 x[1]=0.246552 x[2]=0.882358 x[3]=1.425 x[4]=0.726618 x[5]=0.705059 \n\n2020-05-22T12:16:30: niter=301, f=35.5476, fbest=35.5477\nposition: x[0]=2.46503 x[1]=0.246553 x[2]=0.882302 x[3]=1.425 x[4]=0.726665 x[5]=0.7051 \n\n2020-05-22T12:16:30: niter=302, f=35.5489, fbest=35.5476\nposition: x[0]=2.46527 x[1]=0.246554 x[2]=0.881961 x[3]=1.425 x[4]=0.726804 x[5]=0.705113 \n\n2020-05-22T12:16:30: Iteration 301: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=302, f=35.5473, fbest=35.5476\nposition: x[0]=2.465 x[1]=0.246553 x[2]=0.882321 x[3]=1.425 x[4]=0.726676 x[5]=0.705138 \n\n2020-05-22T12:16:30: niter=303, f=35.5472, fbest=35.5473\nposition: x[0]=2.46503 x[1]=0.246554 x[2]=0.882268 x[3]=1.425 x[4]=0.726763 x[5]=0.705182 \n\n2020-05-22T12:16:30: niter=304, f=35.5485, fbest=35.5472\nposition: x[0]=2.46526 x[1]=0.246555 x[2]=0.881927 x[3]=1.425 x[4]=0.726897 x[5]=0.705198 \n\n2020-05-22T12:16:30: Iteration 303: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=304, f=35.5469, fbest=35.5472\nposition: x[0]=2.465 x[1]=0.246555 x[2]=0.882287 x[3]=1.425 x[4]=0.726772 x[5]=0.705221 \n\n2020-05-22T12:16:30: niter=305, f=35.5468, fbest=35.5469\nposition: x[0]=2.46502 x[1]=0.246555 x[2]=0.882231 x[3]=1.425 x[4]=0.726816 x[5]=0.705263 \n\n2020-05-22T12:16:30: niter=306, f=35.5481, fbest=35.5468\nposition: x[0]=2.46525 x[1]=0.246556 x[2]=0.881888 x[3]=1.425 x[4]=0.726954 x[5]=0.705276 \n\n2020-05-22T12:16:30: Iteration 305: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=306, f=35.5465, fbest=35.5468\nposition: x[0]=2.46499 x[1]=0.246556 x[2]=0.88225 x[3]=1.425 x[4]=0.726826 x[5]=0.7053 \n\n2020-05-22T12:16:30: niter=307, f=35.5463, fbest=35.5465\nposition: x[0]=2.46489 x[1]=0.246549 x[2]=0.882189 x[3]=1.425 x[4]=0.726874 x[5]=0.705339 \n\n2020-05-22T12:16:30: niter=308, f=35.5476, fbest=35.5463\nposition: x[0]=2.46515 x[1]=0.246551 x[2]=0.881843 x[3]=1.425 x[4]=0.727013 x[5]=0.705347 \n\n2020-05-22T12:16:30: Iteration 307: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=308, f=35.546, fbest=35.5463\nposition: x[0]=2.46487 x[1]=0.24655 x[2]=0.882206 x[3]=1.425 x[4]=0.726885 x[5]=0.705374 \n\n2020-05-22T12:16:30: niter=309, f=35.5459, fbest=35.546\nposition: x[0]=2.4649 x[1]=0.246551 x[2]=0.882146 x[3]=1.425 x[4]=0.726932 x[5]=0.705412 \n\n2020-05-22T12:16:30: niter=310, f=35.5472, fbest=35.5459\nposition: x[0]=2.46514 x[1]=0.246552 x[2]=0.8818 x[3]=1.425 x[4]=0.727074 x[5]=0.70542 \n\n2020-05-22T12:16:30: Iteration 309: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=310, f=35.5456, fbest=35.5459\nposition: x[0]=2.46487 x[1]=0.246552 x[2]=0.882163 x[3]=1.425 x[4]=0.726944 x[5]=0.705448 \n\n2020-05-22T12:16:30: niter=311, f=35.5455, fbest=35.5456\nposition: x[0]=2.46491 x[1]=0.246552 x[2]=0.882103 x[3]=1.425 x[4]=0.726991 x[5]=0.705486 \n\n2020-05-22T12:16:30: niter=312, f=35.5468, fbest=35.5455\nposition: x[0]=2.46515 x[1]=0.246554 x[2]=0.881757 x[3]=1.425 x[4]=0.727129 x[5]=0.705493 \n\n2020-05-22T12:16:30: Iteration 311: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=312, f=35.5453, fbest=35.5455\nposition: x[0]=2.46488 x[1]=0.246553 x[2]=0.88212 x[3]=1.425 x[4]=0.727001 x[5]=0.705521 \n\n2020-05-22T12:16:30: niter=313, f=35.5452, fbest=35.5453\nposition: x[0]=2.46492 x[1]=0.246554 x[2]=0.882061 x[3]=1.425 x[4]=0.727048 x[5]=0.705559 \n\n2020-05-22T12:16:30: niter=314, f=35.5465, fbest=35.5452\nposition: x[0]=2.46515 x[1]=0.246555 x[2]=0.881716 x[3]=1.425 x[4]=0.727186 x[5]=0.705565 \n\n2020-05-22T12:16:30: Iteration 313: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=314, f=35.5449, fbest=35.5452\nposition: x[0]=2.46489 x[1]=0.246555 x[2]=0.882078 x[3]=1.425 x[4]=0.727059 x[5]=0.705594 \n\n2020-05-22T12:16:30: niter=315, f=35.5448, fbest=35.5449\nposition: x[0]=2.46492 x[1]=0.246555 x[2]=0.882019 x[3]=1.425 x[4]=0.727105 x[5]=0.705631 \n\n2020-05-22T12:16:30: niter=316, f=35.5461, fbest=35.5448\nposition: x[0]=2.46515 x[1]=0.246556 x[2]=0.881673 x[3]=1.425 x[4]=0.72724 x[5]=0.705636 \n\n2020-05-22T12:16:30: Iteration 315: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=316, f=35.5445, fbest=35.5448\nposition: x[0]=2.46489 x[1]=0.246556 x[2]=0.882036 x[3]=1.425 x[4]=0.727115 x[5]=0.705666 \n\n2020-05-22T12:16:30: niter=317, f=35.5445, fbest=35.5445\nposition: x[0]=2.46492 x[1]=0.246557 x[2]=0.881977 x[3]=1.425 x[4]=0.727161 x[5]=0.705703 \n\n2020-05-22T12:16:30: niter=318, f=35.5458, fbest=35.5445\nposition: x[0]=2.46514 x[1]=0.246558 x[2]=0.881632 x[3]=1.425 x[4]=0.727296 x[5]=0.705706 \n\n2020-05-22T12:16:30: Iteration 317: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=318, f=35.5442, fbest=35.5445\nposition: x[0]=2.46489 x[1]=0.246557 x[2]=0.881995 x[3]=1.425 x[4]=0.727171 x[5]=0.705738 \n\n2020-05-22T12:16:30: niter=319, f=35.5441, fbest=35.5442\nposition: x[0]=2.46492 x[1]=0.246558 x[2]=0.881936 x[3]=1.425 x[4]=0.727217 x[5]=0.705774 \n\n2020-05-22T12:16:30: niter=320, f=35.5455, fbest=35.5441\nposition: x[0]=2.46515 x[1]=0.246559 x[2]=0.881591 x[3]=1.425 x[4]=0.727354 x[5]=0.705777 \n\n2020-05-22T12:16:30: Iteration 319: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=320, f=35.5438, fbest=35.5441\nposition: x[0]=2.46489 x[1]=0.246559 x[2]=0.881953 x[3]=1.425 x[4]=0.727228 x[5]=0.705809 \n\n2020-05-22T12:16:30: niter=321, f=35.5438, fbest=35.5438\nposition: x[0]=2.46492 x[1]=0.24656 x[2]=0.881895 x[3]=1.425 x[4]=0.727275 x[5]=0.705845 \n\n2020-05-22T12:16:30: niter=322, f=35.5451, fbest=35.5438\nposition: x[0]=2.46515 x[1]=0.246561 x[2]=0.88155 x[3]=1.425 x[4]=0.727412 x[5]=0.705847 \n\n2020-05-22T12:16:30: Iteration 321: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=322, f=35.5435, fbest=35.5438\nposition: x[0]=2.46489 x[1]=0.24656 x[2]=0.881912 x[3]=1.425 x[4]=0.727285 x[5]=0.705879 \n\n2020-05-22T12:16:30: niter=323, f=35.5434, fbest=35.5435\nposition: x[0]=2.46492 x[1]=0.246561 x[2]=0.881854 x[3]=1.425 x[4]=0.727331 x[5]=0.705915 \n\n2020-05-22T12:16:30: niter=324, f=35.5448, fbest=35.5434\nposition: x[0]=2.46516 x[1]=0.246572 x[2]=0.881506 x[3]=1.425 x[4]=0.727467 x[5]=0.705917 \n\n2020-05-22T12:16:30: Iteration 323: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:30: niter=324, f=35.5432, fbest=35.5434\nposition: x[0]=2.46489 x[1]=0.246564 x[2]=0.881871 x[3]=1.425 x[4]=0.727341 x[5]=0.705949 \n\n2020-05-22T12:16:30: niter=325, f=35.5431, fbest=35.5432\nposition: x[0]=2.46492 x[1]=0.246565 x[2]=0.881812 x[3]=1.425 x[4]=0.727387 x[5]=0.705984 \n\n2020-05-22T12:16:31: niter=326, f=35.5445, fbest=35.5431\nposition: x[0]=2.46516 x[1]=0.246565 x[2]=0.881475 x[3]=1.425 x[4]=0.727525 x[5]=0.705986 \n\n2020-05-22T12:16:31: Iteration 325: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:31: niter=326, f=35.5428, fbest=35.5431\nposition: x[0]=2.46489 x[1]=0.246565 x[2]=0.881831 x[3]=1.425 x[4]=0.727398 x[5]=0.706019 \n\n2020-05-22T12:16:31: niter=327, f=35.5429, fbest=35.5428\nposition: x[0]=2.46502 x[1]=0.246566 x[2]=0.881776 x[3]=1.425 x[4]=0.727441 x[5]=0.706055 \n\n2020-05-22T12:16:31: Iteration 326: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=327, f=35.5427, fbest=35.5428\nposition: x[0]=2.46489 x[1]=0.246566 x[2]=0.881852 x[3]=1.425 x[4]=0.727399 x[5]=0.70604 \n\n2020-05-22T12:16:31: niter=328, f=35.5424, fbest=35.5427\nposition: x[0]=2.46487 x[1]=0.246566 x[2]=0.881863 x[3]=1.425 x[4]=0.727412 x[5]=0.706071 \n\n2020-05-22T12:16:31: niter=329, f=35.5424, fbest=35.5424\nposition: x[0]=2.46491 x[1]=0.246566 x[2]=0.881795 x[3]=1.425 x[4]=0.727461 x[5]=0.706102 \n\n2020-05-22T12:16:31: niter=330, f=35.544, fbest=35.5424\nposition: x[0]=2.46514 x[1]=0.246566 x[2]=0.881429 x[3]=1.425 x[4]=0.727599 x[5]=0.706098 \n\n2020-05-22T12:16:31: Iteration 329: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:31: niter=330, f=35.5422, fbest=35.5424\nposition: x[0]=2.46488 x[1]=0.246566 x[2]=0.881805 x[3]=1.425 x[4]=0.727472 x[5]=0.706134 \n\n2020-05-22T12:16:31: niter=331, f=35.5422, fbest=35.5422\nposition: x[0]=2.46492 x[1]=0.246572 x[2]=0.881739 x[3]=1.425 x[4]=0.727519 x[5]=0.706166 \n\n2020-05-22T12:16:31: niter=332, f=35.5437, fbest=35.5422\nposition: x[0]=2.46515 x[1]=0.246571 x[2]=0.881385 x[3]=1.425 x[4]=0.727656 x[5]=0.706162 \n\n2020-05-22T12:16:31: Iteration 331: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:31: niter=332, f=35.5419, fbest=35.5422\nposition: x[0]=2.46489 x[1]=0.246572 x[2]=0.881753 x[3]=1.425 x[4]=0.72753 x[5]=0.706198 \n\n2020-05-22T12:16:31: niter=333, f=35.5419, fbest=35.5419\nposition: x[0]=2.46492 x[1]=0.246572 x[2]=0.881687 x[3]=1.425 x[4]=0.727576 x[5]=0.706231 \n\n2020-05-22T12:16:31: niter=334, f=35.5434, fbest=35.5419\nposition: x[0]=2.46515 x[1]=0.246571 x[2]=0.881338 x[3]=1.425 x[4]=0.727712 x[5]=0.706228 \n\n2020-05-22T12:16:31: Iteration 333: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:31: niter=334, f=35.5416, fbest=35.5419\nposition: x[0]=2.46489 x[1]=0.246572 x[2]=0.881703 x[3]=1.425 x[4]=0.727586 x[5]=0.706264 \n\n2020-05-22T12:16:31: niter=335, f=35.5416, fbest=35.5416\nposition: x[0]=2.46492 x[1]=0.246572 x[2]=0.881641 x[3]=1.425 x[4]=0.727632 x[5]=0.706296 \n\n2020-05-22T12:16:31: niter=336, f=35.5431, fbest=35.5416\nposition: x[0]=2.46514 x[1]=0.246572 x[2]=0.881294 x[3]=1.425 x[4]=0.727767 x[5]=0.706293 \n\n2020-05-22T12:16:31: Iteration 335: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:31: niter=336, f=35.5413, fbest=35.5416\nposition: x[0]=2.46489 x[1]=0.246572 x[2]=0.881657 x[3]=1.425 x[4]=0.727642 x[5]=0.706329 \n\n2020-05-22T12:16:31: niter=337, f=35.5415, fbest=35.5413\nposition: x[0]=2.46507 x[1]=0.246582 x[2]=0.881605 x[3]=1.425 x[4]=0.727736 x[5]=0.70637 \n\n2020-05-22T12:16:31: Iteration 336: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=337, f=35.5412, fbest=35.5413\nposition: x[0]=2.46491 x[1]=0.246575 x[2]=0.881678 x[3]=1.425 x[4]=0.727657 x[5]=0.706351 \n\n2020-05-22T12:16:31: niter=338, f=35.541, fbest=35.5412\nposition: x[0]=2.46488 x[1]=0.246575 x[2]=0.881688 x[3]=1.425 x[4]=0.727667 x[5]=0.706382 \n\n2020-05-22T12:16:31: niter=339, f=35.5412, fbest=35.541\nposition: x[0]=2.46486 x[1]=0.246575 x[2]=0.881539 x[3]=1.425 x[4]=0.727699 x[5]=0.70641 \n\n2020-05-22T12:16:31: Iteration 338: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=339, f=35.5408, fbest=35.541\nposition: x[0]=2.46484 x[1]=0.246575 x[2]=0.881682 x[3]=1.425 x[4]=0.727666 x[5]=0.706401 \n\n2020-05-22T12:16:31: niter=340, f=35.5407, fbest=35.5408\nposition: x[0]=2.46483 x[1]=0.246575 x[2]=0.881688 x[3]=1.425 x[4]=0.72768 x[5]=0.706429 \n\n2020-05-22T12:16:31: niter=341, f=35.54, fbest=35.5407\nposition: x[0]=2.46468 x[1]=0.246529 x[2]=0.882703 x[3]=1.425 x[4]=0.727715 x[5]=0.706427 \n\n2020-05-22T12:16:31: niter=342, f=35.5409, fbest=35.54\nposition: x[0]=2.46501 x[1]=0.246531 x[2]=0.88216 x[3]=1.425 x[4]=0.727875 x[5]=0.70638 \n\n2020-05-22T12:16:31: Iteration 341: Restarting iteration with increased lambda.\nLambda = 16\n\n2020-05-22T12:16:31: niter=342, f=35.5399, fbest=35.54\nposition: x[0]=2.4647 x[1]=0.24653 x[2]=0.882651 x[3]=1.425 x[4]=0.727738 x[5]=0.706441 \n\n2020-05-22T12:16:31: niter=343, f=35.5399, fbest=35.5399\nposition: x[0]=2.46479 x[1]=0.24653 x[2]=0.882482 x[3]=1.425 x[4]=0.727798 x[5]=0.706447 \n\n2020-05-22T12:16:31: Iteration 342: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=343, f=35.5398, fbest=35.5399\nposition: x[0]=2.4647 x[1]=0.24653 x[2]=0.882638 x[3]=1.425 x[4]=0.727746 x[5]=0.706453 \n\n2020-05-22T12:16:31: niter=344, f=35.5397, fbest=35.5398\nposition: x[0]=2.46456 x[1]=0.24653 x[2]=0.882586 x[3]=1.425 x[4]=0.727769 x[5]=0.706466 \n\n2020-05-22T12:16:31: niter=345, f=35.5397, fbest=35.5397\nposition: x[0]=2.46466 x[1]=0.246531 x[2]=0.882425 x[3]=1.425 x[4]=0.727831 x[5]=0.706472 \n\n2020-05-22T12:16:31: Iteration 344: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=345, f=35.5397, fbest=35.5397\nposition: x[0]=2.46456 x[1]=0.24653 x[2]=0.882575 x[3]=1.425 x[4]=0.727777 x[5]=0.706477 \n\n2020-05-22T12:16:31: niter=346, f=35.5396, fbest=35.5397\nposition: x[0]=2.46457 x[1]=0.246531 x[2]=0.88253 x[3]=1.425 x[4]=0.727799 x[5]=0.706492 \n\n2020-05-22T12:16:31: niter=347, f=35.5396, fbest=35.5396\nposition: x[0]=2.46286 x[1]=0.246531 x[2]=0.882335 x[3]=1.425 x[4]=0.727898 x[5]=0.706462 \n\n2020-05-22T12:16:31: Iteration 346: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=347, f=35.5395, fbest=35.5396\nposition: x[0]=2.46409 x[1]=0.246531 x[2]=0.882516 x[3]=1.425 x[4]=0.72781 x[5]=0.706501 \n\n2020-05-22T12:16:31: niter=348, f=35.5399, fbest=35.5395\nposition: x[0]=2.46415 x[1]=0.246533 x[2]=0.883209 x[3]=1.425 x[4]=0.727843 x[5]=0.706499 \n\n2020-05-22T12:16:31: Iteration 347: Restarting iteration with increased lambda.\nLambda = 64\n\n2020-05-22T12:16:31: niter=348, f=35.5395, fbest=35.5395\nposition: x[0]=2.46409 x[1]=0.246531 x[2]=0.882702 x[3]=1.425 x[4]=0.727815 x[5]=0.706505 \n\n2020-05-22T12:16:31: Iteration 347: Restarting iteration with increased lambda.\nLambda = 256\n\n2020-05-22T12:16:31: niter=348, f=35.5394, fbest=35.5395\nposition: x[0]=2.46409 x[1]=0.246531 x[2]=0.882563 x[3]=1.425 x[4]=0.727811 x[5]=0.706503 \n\n2020-05-22T12:16:31: niter=349, f=35.5394, fbest=35.5394\nposition: x[0]=2.46409 x[1]=0.246531 x[2]=0.882561 x[3]=1.425 x[4]=0.727813 x[5]=0.706506 \n\n2020-05-22T12:16:31: niter=350, f=35.5394, fbest=35.5394\nposition: x[0]=2.46408 x[1]=0.246529 x[2]=0.88257 x[3]=1.425 x[4]=0.727812 x[5]=0.706511 \n\n2020-05-22T12:16:31: niter=351, f=35.5394, fbest=35.5394\nposition: x[0]=2.46409 x[1]=0.246529 x[2]=0.882551 x[3]=1.425 x[4]=0.727823 x[5]=0.706519 \n\n2020-05-22T12:16:31: niter=352, f=35.5394, fbest=35.5394\nposition: x[0]=2.46449 x[1]=0.246577 x[2]=0.882306 x[3]=1.425 x[4]=0.727991 x[5]=0.706544 \n\n2020-05-22T12:16:31: niter=353, f=35.5394, fbest=35.5394\nposition: x[0]=2.46457 x[1]=0.246573 x[2]=0.882159 x[3]=1.425 x[4]=0.728034 x[5]=0.706568 \n\n2020-05-22T12:16:31: Iteration 352: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=353, f=35.5393, fbest=35.5394\nposition: x[0]=2.46448 x[1]=0.246576 x[2]=0.8823 x[3]=1.425 x[4]=0.727993 x[5]=0.706561 \n\n2020-05-22T12:16:31: niter=354, f=35.5392, fbest=35.5393\nposition: x[0]=2.46449 x[1]=0.246574 x[2]=0.882263 x[3]=1.425 x[4]=0.728006 x[5]=0.706586 \n\n2020-05-22T12:16:31: niter=355, f=35.5392, fbest=35.5392\nposition: x[0]=2.46457 x[1]=0.24657 x[2]=0.882119 x[3]=1.425 x[4]=0.728051 x[5]=0.706608 \n\n2020-05-22T12:16:31: Iteration 354: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=355, f=35.5391, fbest=35.5392\nposition: x[0]=2.46448 x[1]=0.246573 x[2]=0.882258 x[3]=1.425 x[4]=0.728009 x[5]=0.706602 \n\n2020-05-22T12:16:31: niter=356, f=35.539, fbest=35.5391\nposition: x[0]=2.46449 x[1]=0.246572 x[2]=0.882223 x[3]=1.425 x[4]=0.728023 x[5]=0.706626 \n\n2020-05-22T12:16:31: niter=357, f=35.539, fbest=35.539\nposition: x[0]=2.46457 x[1]=0.246568 x[2]=0.88208 x[3]=1.425 x[4]=0.728069 x[5]=0.706647 \n\n2020-05-22T12:16:31: Iteration 356: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=357, f=35.5389, fbest=35.539\nposition: x[0]=2.46448 x[1]=0.246571 x[2]=0.882218 x[3]=1.425 x[4]=0.728026 x[5]=0.706642 \n\n2020-05-22T12:16:31: niter=358, f=35.5388, fbest=35.5389\nposition: x[0]=2.46449 x[1]=0.246569 x[2]=0.882183 x[3]=1.425 x[4]=0.728041 x[5]=0.706666 \n\n2020-05-22T12:16:31: niter=359, f=35.5388, fbest=35.5388\nposition: x[0]=2.46457 x[1]=0.246566 x[2]=0.882042 x[3]=1.425 x[4]=0.728088 x[5]=0.706686 \n\n2020-05-22T12:16:31: Iteration 358: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=359, f=35.5387, fbest=35.5388\nposition: x[0]=2.46448 x[1]=0.246569 x[2]=0.882179 x[3]=1.425 x[4]=0.728044 x[5]=0.706682 \n\n2020-05-22T12:16:31: niter=360, f=35.5386, fbest=35.5387\nposition: x[0]=2.46449 x[1]=0.246567 x[2]=0.882145 x[3]=1.425 x[4]=0.728059 x[5]=0.706704 \n\n2020-05-22T12:16:31: niter=361, f=35.5387, fbest=35.5386\nposition: x[0]=2.46457 x[1]=0.246564 x[2]=0.882012 x[3]=1.425 x[4]=0.728108 x[5]=0.706723 \n\n2020-05-22T12:16:31: Iteration 360: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=361, f=35.5385, fbest=35.5386\nposition: x[0]=2.46448 x[1]=0.246567 x[2]=0.882143 x[3]=1.425 x[4]=0.728063 x[5]=0.70672 \n\n2020-05-22T12:16:31: niter=362, f=35.5385, fbest=35.5385\nposition: x[0]=2.46449 x[1]=0.246566 x[2]=0.88211 x[3]=1.425 x[4]=0.728078 x[5]=0.706742 \n\n2020-05-22T12:16:31: niter=363, f=35.5385, fbest=35.5385\nposition: x[0]=2.46456 x[1]=0.246563 x[2]=0.881972 x[3]=1.425 x[4]=0.728128 x[5]=0.70676 \n\n2020-05-22T12:16:31: Iteration 362: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=363, f=35.5384, fbest=35.5385\nposition: x[0]=2.46448 x[1]=0.246565 x[2]=0.882107 x[3]=1.425 x[4]=0.728083 x[5]=0.706757 \n\n2020-05-22T12:16:31: niter=364, f=35.5383, fbest=35.5384\nposition: x[0]=2.46448 x[1]=0.246564 x[2]=0.882075 x[3]=1.425 x[4]=0.728098 x[5]=0.706779 \n\n2020-05-22T12:16:31: niter=365, f=35.5384, fbest=35.5383\nposition: x[0]=2.46456 x[1]=0.246562 x[2]=0.881938 x[3]=1.425 x[4]=0.728148 x[5]=0.706796 \n\n2020-05-22T12:16:31: Iteration 364: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=365, f=35.5382, fbest=35.5383\nposition: x[0]=2.46448 x[1]=0.246564 x[2]=0.882071 x[3]=1.425 x[4]=0.728103 x[5]=0.706794 \n\n2020-05-22T12:16:31: niter=366, f=35.5381, fbest=35.5382\nposition: x[0]=2.46448 x[1]=0.246563 x[2]=0.88204 x[3]=1.425 x[4]=0.728119 x[5]=0.706815 \n\n2020-05-22T12:16:31: niter=367, f=35.5382, fbest=35.5381\nposition: x[0]=2.46456 x[1]=0.246561 x[2]=0.881905 x[3]=1.425 x[4]=0.728169 x[5]=0.706832 \n\n2020-05-22T12:16:31: Iteration 366: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=367, f=35.5381, fbest=35.5381\nposition: x[0]=2.46447 x[1]=0.246562 x[2]=0.882037 x[3]=1.425 x[4]=0.728123 x[5]=0.70683 \n\n2020-05-22T12:16:31: niter=368, f=35.538, fbest=35.5381\nposition: x[0]=2.46448 x[1]=0.246562 x[2]=0.882007 x[3]=1.425 x[4]=0.72814 x[5]=0.706851 \n\n2020-05-22T12:16:31: niter=369, f=35.5381, fbest=35.538\nposition: x[0]=2.46455 x[1]=0.24656 x[2]=0.881873 x[3]=1.425 x[4]=0.728191 x[5]=0.706867 \n\n2020-05-22T12:16:31: Iteration 368: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=369, f=35.5379, fbest=35.538\nposition: x[0]=2.46447 x[1]=0.246561 x[2]=0.882004 x[3]=1.425 x[4]=0.728144 x[5]=0.706866 \n\n2020-05-22T12:16:31: niter=370, f=35.5378, fbest=35.5379\nposition: x[0]=2.46447 x[1]=0.246561 x[2]=0.881974 x[3]=1.425 x[4]=0.728161 x[5]=0.706886 \n\n2020-05-22T12:16:31: niter=371, f=35.5379, fbest=35.5378\nposition: x[0]=2.46456 x[1]=0.246559 x[2]=0.881839 x[3]=1.425 x[4]=0.728176 x[5]=0.706898 \n\n2020-05-22T12:16:31: Iteration 370: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=371, f=35.5378, fbest=35.5378\nposition: x[0]=2.46447 x[1]=0.24656 x[2]=0.881972 x[3]=1.425 x[4]=0.728156 x[5]=0.706901 \n\n2020-05-22T12:16:31: niter=372, f=35.5377, fbest=35.5378\nposition: x[0]=2.46447 x[1]=0.24656 x[2]=0.881943 x[3]=1.425 x[4]=0.728173 x[5]=0.70692 \n\n2020-05-22T12:16:31: niter=373, f=35.5378, fbest=35.5377\nposition: x[0]=2.46455 x[1]=0.246563 x[2]=0.88181 x[3]=1.425 x[4]=0.728226 x[5]=0.706934 \n\n2020-05-22T12:16:31: Iteration 372: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=373, f=35.5376, fbest=35.5377\nposition: x[0]=2.46446 x[1]=0.246561 x[2]=0.881941 x[3]=1.425 x[4]=0.728179 x[5]=0.706935 \n\n2020-05-22T12:16:31: niter=374, f=35.5375, fbest=35.5376\nposition: x[0]=2.46447 x[1]=0.24656 x[2]=0.881912 x[3]=1.425 x[4]=0.728196 x[5]=0.706954 \n\n2020-05-22T12:16:31: niter=375, f=35.5377, fbest=35.5375\nposition: x[0]=2.46475 x[1]=0.246559 x[2]=0.882132 x[3]=1.425 x[4]=0.728264 x[5]=0.706945 \n\n2020-05-22T12:16:31: Iteration 374: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=375, f=35.5375, fbest=35.5375\nposition: x[0]=2.46451 x[1]=0.24656 x[2]=0.882012 x[3]=1.425 x[4]=0.728203 x[5]=0.706966 \n\n2020-05-22T12:16:31: niter=376, f=35.5374, fbest=35.5375\nposition: x[0]=2.46451 x[1]=0.246559 x[2]=0.881978 x[3]=1.425 x[4]=0.728221 x[5]=0.706985 \n\n2020-05-22T12:16:31: niter=377, f=35.5375, fbest=35.5374\nposition: x[0]=2.46459 x[1]=0.246558 x[2]=0.88184 x[3]=1.425 x[4]=0.728274 x[5]=0.706997 \n\n2020-05-22T12:16:31: Iteration 376: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=377, f=35.5373, fbest=35.5374\nposition: x[0]=2.4645 x[1]=0.246559 x[2]=0.881974 x[3]=1.425 x[4]=0.728226 x[5]=0.706999 \n\n2020-05-22T12:16:31: niter=378, f=35.5373, fbest=35.5373\nposition: x[0]=2.46451 x[1]=0.246559 x[2]=0.881942 x[3]=1.425 x[4]=0.728244 x[5]=0.707017 \n\n2020-05-22T12:16:31: niter=379, f=35.5374, fbest=35.5373\nposition: x[0]=2.46459 x[1]=0.246558 x[2]=0.881807 x[3]=1.425 x[4]=0.728299 x[5]=0.70703 \n\n2020-05-22T12:16:31: Iteration 378: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=379, f=35.5372, fbest=35.5373\nposition: x[0]=2.4645 x[1]=0.246559 x[2]=0.881939 x[3]=1.425 x[4]=0.72825 x[5]=0.707031 \n\n2020-05-22T12:16:31: niter=380, f=35.5371, fbest=35.5372\nposition: x[0]=2.46451 x[1]=0.246558 x[2]=0.881908 x[3]=1.425 x[4]=0.728267 x[5]=0.70705 \n\n2020-05-22T12:16:31: niter=381, f=35.5372, fbest=35.5371\nposition: x[0]=2.46458 x[1]=0.246558 x[2]=0.881774 x[3]=1.425 x[4]=0.728321 x[5]=0.707062 \n\n2020-05-22T12:16:31: Iteration 380: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=381, f=35.5371, fbest=35.5371\nposition: x[0]=2.4645 x[1]=0.246559 x[2]=0.881906 x[3]=1.425 x[4]=0.728273 x[5]=0.707063 \n\n2020-05-22T12:16:31: niter=382, f=35.537, fbest=35.5371\nposition: x[0]=2.46451 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728291 x[5]=0.707082 \n\n2020-05-22T12:16:31: niter=383, f=35.5373, fbest=35.537\nposition: x[0]=2.46452 x[1]=0.24656 x[2]=0.881672 x[3]=1.425 x[4]=0.728327 x[5]=0.707093 \n\n2020-05-22T12:16:31: Iteration 382: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=383, f=35.5369, fbest=35.537\nposition: x[0]=2.46448 x[1]=0.246559 x[2]=0.881855 x[3]=1.425 x[4]=0.728292 x[5]=0.707096 \n\n2020-05-22T12:16:31: niter=384, f=35.5369, fbest=35.5369\nposition: x[0]=2.46441 x[1]=0.246559 x[2]=0.881813 x[3]=1.425 x[4]=0.728286 x[5]=0.707112 \n\n2020-05-22T12:16:31: niter=385, f=35.5372, fbest=35.5369\nposition: x[0]=2.46463 x[1]=0.246558 x[2]=0.881685 x[3]=1.425 x[4]=0.72834 x[5]=0.707123 \n\n2020-05-22T12:16:31: Iteration 384: Restarting iteration with increased lambda.\nLambda = 32\n\n2020-05-22T12:16:31: niter=385, f=35.5368, fbest=35.5369\nposition: x[0]=2.46444 x[1]=0.246559 x[2]=0.881811 x[3]=1.425 x[4]=0.728292 x[5]=0.707125 \n\n2020-05-22T12:16:31: niter=386, f=35.5369, fbest=35.5368\nposition: x[0]=2.46445 x[1]=0.246558 x[2]=0.881783 x[3]=1.425 x[4]=0.728312 x[5]=0.707142 \n\n2020-05-22T12:16:31: Iteration 385: Restarting iteration with increased lambda.\nLambda = 64\n\n2020-05-22T12:16:31: niter=386, f=35.5368, fbest=35.5368\nposition: x[0]=2.46443 x[1]=0.246559 x[2]=0.881813 x[3]=1.425 x[4]=0.728294 x[5]=0.707133 \n\n2020-05-22T12:16:31: niter=387, f=35.5369, fbest=35.5368\nposition: x[0]=2.46442 x[1]=0.246558 x[2]=0.88181 x[3]=1.425 x[4]=0.728301 x[5]=0.707145 \n\n2020-05-22T12:16:31: Iteration 386: Restarting iteration with increased lambda.\nLambda = 128\n\n2020-05-22T12:16:31: niter=387, f=35.5368, fbest=35.5368\nposition: x[0]=2.46443 x[1]=0.246559 x[2]=0.881815 x[3]=1.425 x[4]=0.728295 x[5]=0.707137 \n\n2020-05-22T12:16:31: niter=388, f=35.5367, fbest=35.5368\nposition: x[0]=2.46431 x[1]=0.246559 x[2]=0.881816 x[3]=1.425 x[4]=0.728298 x[5]=0.707144 \n\n2020-05-22T12:16:31: niter=389, f=35.5366, fbest=35.5367\nposition: x[0]=2.46431 x[1]=0.246558 x[2]=0.881811 x[3]=1.425 x[4]=0.728306 x[5]=0.707155 \n\n2020-05-22T12:16:31: niter=390, f=35.5367, fbest=35.5366\nposition: x[0]=2.46433 x[1]=0.246558 x[2]=0.881778 x[3]=1.425 x[4]=0.728327 x[5]=0.70717 \n\n2020-05-22T12:16:31: Iteration 389: Restarting iteration with increased lambda.\nLambda = 64\n\n2020-05-22T12:16:31: niter=390, f=35.5366, fbest=35.5366\nposition: x[0]=2.4643 x[1]=0.246558 x[2]=0.881812 x[3]=1.425 x[4]=0.728309 x[5]=0.707162 \n\n2020-05-22T12:16:31: niter=391, f=35.5365, fbest=35.5366\nposition: x[0]=2.4643 x[1]=0.246558 x[2]=0.881807 x[3]=1.425 x[4]=0.728316 x[5]=0.707174 \n\n2020-05-22T12:16:31: niter=392, f=35.5366, fbest=35.5365\nposition: x[0]=2.46432 x[1]=0.246558 x[2]=0.881773 x[3]=1.425 x[4]=0.728338 x[5]=0.707188 \n\n2020-05-22T12:16:31: Iteration 391: Restarting iteration with increased lambda.\nLambda = 64\n\n2020-05-22T12:16:31: niter=392, f=35.5365, fbest=35.5365\nposition: x[0]=2.4643 x[1]=0.246558 x[2]=0.881807 x[3]=1.425 x[4]=0.728319 x[5]=0.70718 \n\n2020-05-22T12:16:31: niter=393, f=35.5365, fbest=35.5365\nposition: x[0]=2.4643 x[1]=0.246558 x[2]=0.881853 x[3]=1.425 x[4]=0.728327 x[5]=0.707191 \n\n2020-05-22T12:16:31: niter=394, f=35.5366, fbest=35.5365\nposition: x[0]=2.46433 x[1]=0.246557 x[2]=0.881903 x[3]=1.425 x[4]=0.728255 x[5]=0.707198 \n\n2020-05-22T12:16:31: Iteration 393: Restarting iteration with increased lambda.\nLambda = 64\n\n2020-05-22T12:16:31: niter=394, f=35.5364, fbest=35.5365\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: niter=395, f=35.5365, fbest=35.5364\nposition: x[0]=2.4643 x[1]=0.246558 x[2]=0.881864 x[3]=1.425 x[4]=0.728256 x[5]=0.707205 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 128\n\n2020-05-22T12:16:31: niter=395, f=35.5365, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728293 x[5]=0.7072 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 512\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728303 x[5]=0.707198 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2048\n\n2020-05-22T12:16:31: niter=395, f=35.5365, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728305 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 8192\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 32768\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 131072\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 524288\n\n2020-05-22T12:16:31: niter=395, f=35.5365, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.09715e+06\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 8.38861e+06\n\n2020-05-22T12:16:31: niter=395, f=35.5365, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.35544e+07\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.34218e+08\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 5.36871e+08\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.14748e+09\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 8.58993e+09\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.43597e+10\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.37439e+11\n\n2020-05-22T12:16:31: niter=395, f=35.5365, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 5.49756e+11\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.19902e+12\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 8.79609e+12\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.51844e+13\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.40737e+14\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 5.6295e+14\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.2518e+15\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 9.0072e+15\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.60288e+16\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.44115e+17\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 5.76461e+17\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.30584e+18\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 9.22337e+18\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.68935e+19\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.47574e+20\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 5.90296e+20\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.36118e+21\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 9.44473e+21\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.77789e+22\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.51116e+23\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 6.04463e+23\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.41785e+24\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 9.67141e+24\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.86856e+25\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.54743e+26\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 6.1897e+26\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.47588e+27\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 9.90352e+27\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.96141e+28\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.58456e+29\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 6.33825e+29\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.5353e+30\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.01412e+31\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 4.05648e+31\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.62259e+32\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 6.49037e+32\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.59615e+33\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.03846e+34\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 4.15384e+34\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.66153e+35\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 6.64614e+35\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.65846e+36\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.06338e+37\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 4.25353e+37\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.70141e+38\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 6.80565e+38\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.72226e+39\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.0889e+40\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 4.35561e+40\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.74225e+41\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 6.96898e+41\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.78759e+42\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.11504e+43\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 4.46015e+43\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.78406e+44\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 7.13624e+44\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.8545e+45\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.1418e+46\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 4.56719e+46\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.82688e+47\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 7.30751e+47\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.923e+48\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.1692e+49\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 4.67681e+49\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.87072e+50\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 7.48289e+50\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.99316e+51\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.19726e+52\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 4.78905e+52\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.91562e+53\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 7.66248e+53\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.06499e+54\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.226e+55\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 4.90399e+55\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.96159e+56\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 7.84638e+56\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.13855e+57\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.25542e+58\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 5.02168e+58\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.00867e+59\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 8.03469e+59\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.21388e+60\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.28555e+61\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 5.1422e+61\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.05688e+62\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 8.22752e+62\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.29101e+63\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.3164e+64\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 5.26561e+64\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.10625e+65\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 8.42498e+65\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.36999e+66\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.348e+67\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 5.39199e+67\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.1568e+68\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 8.62718e+68\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.45087e+69\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.38035e+70\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 5.5214e+70\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.20856e+71\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 8.83424e+71\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.53369e+72\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.41348e+73\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 5.65391e+73\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.26156e+74\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 9.04626e+74\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.6185e+75\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.4474e+76\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 5.7896e+76\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.31584e+77\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 9.26337e+77\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 3.70535e+78\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 1.48214e+79\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 5.92855e+79\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 394: Restarting iteration with increased lambda.\nLambda = 2.37142e+80\n\n2020-05-22T12:16:31: niter=395, f=35.5364, fbest=35.5364\nposition: x[0]=2.46429 x[1]=0.246558 x[2]=0.881876 x[3]=1.425 x[4]=0.728306 x[5]=0.707197 \n\n2020-05-22T12:16:31: Iteration 395: Lambda reached maximal value. Terminating.\n\n2020-05-22T12:16:31: Algorithm reached the edge of the parameter domain 614 times.\n\n2020-05-22T12:16:31: Algorithm finished.\nTerminated after 396 of 2000 iterations.\n\n"

plotly::ggplotly(plots$`Erk2-P`)
plotly::ggplotly(plots$`Mos-P`)